|
|
|
|
|
by Sean1708
2672 days ago
|
|
Oh god the amount of scripts I have that do something like: while True:
for i, item in enumerate(list):
print(i, item, sep=" - ")
choice = input()
if valid(choice):
break
This would make those so much easier to write and give a much nicer UI at the same time. |
|