0
Why the output of b is False?
a=100 is 10*10 b=1000 is 100*10 print(a) print(b) #please tell me why the b is getting False instead of True! output-- True False
1 Réponse
a=100 is 10*10 b=1000 is 100*10 print(a) print(b) #please tell me why the b is getting False instead of True! output-- True False