adds full 101-500 database
This commit is contained in:
parent
747f573201
commit
88f35d85e5
Binary file not shown.
After Width: | Height: | Size: 70 KiB |
File diff suppressed because it is too large
Load Diff
|
@ -52,7 +52,7 @@ class Tui(object):
|
||||||
blank
|
blank
|
||||||
"""
|
"""
|
||||||
answers = []
|
answers = []
|
||||||
results = input("What's your answer? (only numbers, separated by a SPACE) ")
|
results = input("\n What's your answer? (only numbers, separated by a SPACE) ")
|
||||||
results = results.split()
|
results = results.split()
|
||||||
for result in results:
|
for result in results:
|
||||||
if result.isdigit():
|
if result.isdigit():
|
||||||
|
@ -115,7 +115,7 @@ class Application(object):
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
filepath = pathlib.Path("./data/multiple.csv")
|
filepath = pathlib.Path("./data/list_book1.csv")
|
||||||
interface = Tui()
|
interface = Tui()
|
||||||
app = Application(filepath, interface)
|
app = Application(filepath, interface)
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in New Issue