Quick actions

cmd+k|ctrl+k

Navigation

Languages

ID and function 

Snippet info

Language

Python

Visibility

public

Author

hohim4095

Created

2024-10-17T13:36:10.63266Z

Updated

2024-10-17T13:52:12.003404Z

x=1
y=1.0
print(id(x),id(y))
def a(x):
    x()
def b():
    print("hello")
if x>0:
    print("hello")
a(b)
INFO