Add return command

This commit is contained in:
kokarare1212 2021-05-31 20:46:38 +09:00
parent 7e6eeaf590
commit 290b57fd78
1 changed files with 2 additions and 0 deletions

View File

@ -81,6 +81,8 @@ def client():
position = -1
while True:
num_str = input("Select [1-5]: ")
if num_str == "exit" or num_str == "quit":
return
try:
num = int(num_str)
except ValueError: