KnowledgeBoat Logo

Computer Science

Write Python statement for the following in interactive mode:

  1. To display sum of 3, 8.0, 6*12
  2. To print sum of 16, 5.0, 44.0

Python Data Handling

6 Likes

Answer

1.

>>> 3 + 8.0 + 6 * 12

2.

>>> print(16 + 5.0 + 44.0)

Answered By

4 Likes


Related Questions