Quick actions

cmd+k|ctrl+k

Navigation

Languages

Operator precedence exercise 1

Snippet info

Language

Python

Visibility

public

Author

sasso

Created

2025-12-06T12:41:12.1322Z

Updated

2025-12-06T12:55:14.060735Z

# Guess the output of each answer before you click RUN
# Try to write down your answer before and see how you do... keep it mind I made it a little tricky for you :)

print((5 + 4) * 10 / 2)

print(((5 + 4) * 10) / 2)

print((5 + 4) * (10 / 2))

print(5 + (4 * 10) / 2)

print(5 + 4 * 10 // 2)
INFO