Computer Science, asked by shuklaraghav12460, 6 months ago

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 anirudh092008
6

Answer:

# Output

4.6 7.4

13.79999999999999999

21.2

Explanation:

Answered by izhans2007
0

Answer:

Explanation:

22.2

Similar questions