what will be the following snipplet?
x,y=2,6
if (x+y)==10:
print("true")
else:
print("false")
Answers
Answered by
1
Answer:
it's false because 6+2 is 8
Similar questions