Quick actions

cmd+k|ctrl+k

Navigation

Languages

Num

Snippet info

Language

Python

Visibility

public

Author

hohim4095

Created

2024-08-22T13:55:29.240832Z

Updated

2024-09-12T13:04:31.368046Z

'''This is multiple line comment.
this is second line
this is third line
'''

#this is comment
x=1 
print(id(x))
y=1.0
print(id(y))
z=1.00
print(id(z))
INFO