Operator Precedence

Run Settings
LanguagePython
Language Version
Run Command
# 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.0 print(((5 + 4) * 10) / 2) #45.0 print((5 + 4) * (10 / 2)) #45.0 print(5 + (4 * 10) / 2) #25.0 print(5 + 4 * 10 // 2) #25
Editor Settings
Theme
Key bindings
Full width
Lines