Quick actions

cmd+k|ctrl+k

Navigation

Languages

Lesson01

Snippet info

Language

Python

Visibility

public

Author

victormakwaitat

Created

2024-08-29T11:12:06.467293Z

Updated

2024-08-29T11:12:06.467293Z

y=3
print(id(y), y, id(3))
z=1 + 2
print(id(z), z, id(5))
print(id(1.0), id(1.01), id(0.01))
u=(1,2,33)
print(id(u), u, id(1), id(2), (33))
INFO