Computer Science
Write Python statement for the following in interactive mode:
- To display sum of 3, 8.0, 6*12
- To print sum of 16, 5.0, 44.0
Python Data Handling
7 Likes
Answer
1.
>>> 3 + 8.0 + 6 * 12
2.
>>> print(16 + 5.0 + 44.0)
Answered By
5 Likes