Predict the output if e is given as ‘True’
a=True
b=0<5
print(a==b)
print(a is b)
c=str(a)
d=str(b)
print(c==d)
print(c is d)
e= input(“Enter :”)
print(c==e)
print (c is e)
Answers
Answered by
2
Answer:
True.
Hope this helps...
Similar questions