You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
212 B
14 lines
212 B
6 months ago
|
from dis import dis
|
||
|
|
||
|
dis('''
|
||
|
if door == "1":
|
||
|
print("1")
|
||
|
bear = input("> ")
|
||
|
if bear == "1":
|
||
|
print("bear 1")
|
||
|
elif bear == "2":
|
||
|
print("bear 2")
|
||
|
else:
|
||
|
print("bear 3")
|
||
|
''')
|