Report Bug
Qus :

What will the following code output?

a=55	
b=’55’	
print( a is not b)

Qus

निम्नलिखित कोड आउटपुट क्या होगा?

a=55	
b=’55’	
print( a is not b)


A. True
B. False
C. 55
D. TypeError


Solution
A. True






Report Bug