Computer Science, asked by lohithM7, 4 months ago

2. a) Predict the output if e is given input 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)
b)Find the output:​

Answers

Answered by indiantechsmith
0

True

True

True

Enter : True

True

False

Similar questions