forked from tdwojak/Python2017
6 lines
73 B
Python
6 lines
73 B
Python
|
a =[1,2,3,4,5]
|
||
|
b='asdf'
|
||
|
c=0.5
|
||
|
print(id(a))
|
||
|
print(id(b))
|
||
|
print(id(c))
|