Quick actions

cmd+k|ctrl+k

Navigation

Languages

Day1.2

Snippet info

Language

Python

Visibility

public

Author

ankushsahu203

Created

2026-07-10T02:58:52.995134Z

Updated

2026-07-10T05:32:15.367262Z

# operator precedence
# ()
# **
# * /
# + -
print((20+5)+2**2)
INFO