14. Write the output for the following python code.
a=20
b=2.5
c=1
a=b
print(a,b)
a*=2+c
print(a)
b+=a*c
print(b)
Answers
Answered by
2
Answer:
Here's your output buddy:
2.5 2.5
7.5
10.0
Similar questions