Quick actions

cmd+k|ctrl+k

Navigation

Languages

Operadores

Snippet info

Language

Python

Visibility

public

Author

9981c64029e8bbd467408ce4e66a0550e1fad323

Created

2026-05-02T23:45:05.314587Z

Updated

2026-05-02T23:45:24.900943Z

# 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)
#45

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

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

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

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


INFO