Lecture4
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
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())