Initial commit
This commit is contained in:
10
python/idne.py
Normal file
10
python/idne.py
Normal 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}}
|
||||
Reference in New Issue
Block a user