Skip to content

Instantly share code, notes, and snippets.

@missingdays
Created May 6, 2015 15:13
Show Gist options
  • Save missingdays/7c03db76e0b7d0297ecd to your computer and use it in GitHub Desktop.
Save missingdays/7c03db76e0b7d0297ecd to your computer and use it in GitHub Desktop.
Python dummy test
a = 3
for i in range(1):
a = 4
print(a) #4
for j in range(1):
a = 5
print(a) #5
print(a) #5
print(a) #5
def b():
a = 6
b()
print(a) #5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment