This is the code and notes from my live Twitch programming and drawing classes.
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.
 
 

13 lines
212 B

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")
''')