+ 1
Hey guys can anyone tell me what's wrong with this?
def Find(): print("Find a player") def Best(): print("Best 5 scores") def Append(): print("Append a player") def Exit(): print("Exit") def menu(): print() print("1...Find a player") print("2...Best 5 scores") print("3...Append a player to the file") print("4...Exit") selection=int(input("Enter your choice: ")) if selection==1: Find() elif selection==2: Best() elif selection==3: Append() elif selection==4: exit else: print("Invalid choice. Enter 1-4") menu()
6 Respuestas
0
a function to do what? You already have a whole group of functions....
You need an if-else or switch and a dictionary if you are going to make a multiple choice function.
0
Megan Lott
How about this?
https://code.sololearn.com/csNJKVgmSnRG/?ref=app
- 1
Thanks
- 1
I need to make a function how can I do that