Report Bug
Qus :

What will the following code output?

a=555 
b=55 
print( b in a)

Qus

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

a=555 
b=55 
print( b in a)


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


Solution
D. TypeError






Report Bug