Quick actions

cmd+k|ctrl+k

Navigation

Languages

OperatorsPrecendence

Snippet info

Language

Python

Visibility

public

Author

bensruthy

Created

2026-03-09T15:34:46.512745Z

Updated

2026-03-09T15:34:46.512745Z

# 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(type((5 + 4) * 10 / 2))
print(type(10/2))

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

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

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

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