What will be output produced by following code? State reason for this output.
a, b, c = 1, 1, 2
d = a + b
e = 1.0
f = 1.0
g = 2.0
h = e + f
print(c = d)
print(c is d)
print(g == h)
print(g is h)
What output produced by print(c=d)
What output produced by print(c is d)
What output produced by print(g==h)
What output produced by print( g is h)
State the reason for false output
Answers
Answered by
0
Answer:
a b c d e f g h I j k l m n o p q r s t u v w X y z
Similar questions
English,
2 months ago
Math,
2 months ago
Hindi,
4 months ago
Computer Science,
9 months ago
Political Science,
9 months ago