9) Write the output for the following: -
A, B, C, D=9.2, 2.0, 4, 21
a) print(A/4)
b) print(B**C)
c) print(D*C)
d) print(A%C)
Answers
Answered by
3
Output:
- 2.3
- 16.0
- 84
- 1.19
Similar questions