Skip to content
Snippets Groups Projects
Commit b0bde33a authored by KimMinSeob's avatar KimMinSeob
Browse files

Upload New File

parent 5bde3a1f
No related branches found
No related tags found
No related merge requests found
while.py 0 → 100644
while True:
print("do you want recursive? [yes/no]:")
answer = input()
if answer == 'yes':
print('recursive')
elif answer == 'no':
break
else:
print('please reanswer')
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment