Python learning
12345678910111213141516171819
# Operator Presedence (It means which operator will runs first as follow)
# Example
print((12-3) + 2 **4)
print((5 + 4) * 10 / 2)
# 45
print(((5 + 4) * 10) / 2)
# 45
print((5 + 4) * (10 / 2))
# 45
print(5 + (4 * 10) / 2)
# 25
print(5 + 4 * 10 // 2)
# 25
# First ()
# Second ** Power
# Third / *
# Fourth + -
Python
INFO