9. What is the output for the following code?
a=b=C=10
d=5
e=a+b+c-d
f=a+b+c==d
print(d,f)
Answers
Answered by
1
Answer:
25 25
Explanation:
this is the output
Answered by
1
Answer:
Here's your output buddy:
5 False
Similar questions