6. What will be the output of following Python code ?
a = 12
b = 7.4
C = 1
a - = b
print(a, b)
a *= 2 + c
print(a)
b += a * C
print(b)
Answers
Answered by
6
Answer:
# Output
4.6 7.4
13.79999999999999999
21.2
Explanation:
Answered by
0
Answer:
Explanation:
22.2
Similar questions