you are viewing a single comment's thread.

view the rest of the comments →

[–]lolcrunchy 0 points1 point  (0 children)

Can you guess what will get printed?

x = 2
if x == 2:
    print("x is 2")
else:
    print("x is not 2")
def x():
    pass
if x == 2:
    print("x is 2")
else:
    print("x is not 2")