Initial commit

This commit is contained in:
2019-07-02 00:03:07 -04:00
commit 9871585106
9 changed files with 99 additions and 0 deletions

10
python/idne.py Normal file
View File

@@ -0,0 +1,10 @@
name = "Matt"
first = name
age = 1000
print(id(age))
age = age + 1
print(id(age))
names = []
print(id(names))
names.append("Fred")
print(id(names}}