Computer Science
How will Python evaluate the following expression ?
15.0 / 4 + (8 + 3.0)
Python Funda
54 Likes
Answer
15.0 / 4 + (8 + 3.0)
⇒ 15.0 / 4 + 11.0
⇒ 3.75 + 11.0
⇒ 14.75
Answered By
30 Likes
How will Python evaluate the following expression ?
15.0 / 4 + (8 + 3.0)
54 Likes
15.0 / 4 + (8 + 3.0)
⇒ 15.0 / 4 + 11.0
⇒ 3.75 + 11.0
⇒ 14.75
Answered By
30 Likes