Quick actions

cmd+k|ctrl+k

Navigation

Languages

Lecture4

Snippet info

Language

Python

Visibility

public

Author

natlyy0816

Created

2024-11-06T11:34:07.651833Z

Updated

2024-11-06T13:24:46.06231Z

a=1 #eval 1 and place the 1 ram address to a
b=2 #eval 2 and place the 2 ram address to b
c=3 #eval 3 and place the 3 ram address to c
d=1
x=a>b or b<d and a<c
print(id(a),id(d))
print(x)
print (is())
INFO