Quick actions

cmd+k|ctrl+k

Navigation

Languages

Datatypes

Snippet info

Language

Python

Visibility

public

Author

doddiramu

Created

2026-06-04T14:46:11.326131Z

Updated

2026-06-04T14:46:11.326131Z

#Operator Precedence

# ()
# **
# * /
# + -

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