Predict the output: a,b=12,13 c,d=a*2,a/2 print(a,b,c) IN PYTHON
Answers
Answered by
17
a=12
b=13
c=24
These are the outputs.
Answered by
3
Answer:
12 13 24
Explanation:
a = 12
b = 13
c = a*2
d = a/2
print(a,b,c)
Similar questions