[Python #6] create e36.py

This commit is contained in:
kjg 2020-05-29 23:24:20 +09:00
parent b7fc736894
commit c8f538f9e7
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,29 @@
from sys import exit
weapon = ['sword', 'gun', 'canon']
def check_weapon(what):
if what == weapon[2]:
print("you win")
elif what == weapon[0]:
print("you lose")
elif what == weapon[1]:
print("you tie")
else:
print("you have to choose it in selection")
start()
exit(0)
def start():
while True:
print(f"you can choose weapon {weapon[0]}, {weapon[1]}, {weapon[2]}")
choice = input("> ")
check_weapon(choice)
start()

View File

@ -124,9 +124,12 @@ How to use if, elif
*** Python #6
**** ex32
How to use for-loop
append, insert, extend, copy, remove, pop, clear, count, index, reverse, sort
**** ex33
How to use while-loop
**** ex34
How to use Accessing Elements of Lists
**** ex35
practice function, while, if
**** ex36
some rules of if, loop and tips for debugging