()
| 73 | |
| 74 | |
| 75 | def ViewAll(): |
| 76 | print("\u0332".join("BOOK NAMES~~")) |
| 77 | print("------------------------------------") |
| 78 | |
| 79 | display = "select * from books" |
| 80 | mycur.execute(display) |
| 81 | data2 = mycur.fetchall() |
| 82 | c = 0 |
| 83 | |
| 84 | for y in data2: |
| 85 | c = c + 1 |
| 86 | print(c, "-->", y[1]) |
| 87 | |
| 88 | |
| 89 | def CNB1(): |
no outgoing calls
no test coverage detected