Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 219 Bytes

operations_lvl_2.md

File metadata and controls

15 lines (11 loc) · 219 Bytes

Operations - Level 2

What will the following block of code will print?

x = 3
x -= 1
x += 5
x **= 2.0
x += 2 * (3 + 1)

Solution

Click here to view the solution