KnowledgeBoat Logo
|

Computer Science

How will Python evaluate the following expression ?

15.0 / 4 + (8 + 3.0)

Python Funda

57 Likes

Answer

    15.0 / 4 + (8 + 3.0)
⇒ 15.0 / 4 + 11.0
⇒ 3.75 + 11.0
⇒ 14.75

Answered By

32 Likes


Related Questions