Operators
Operators are fundamental in programming, they allow us to process and modify values.
value1 = 10 #our variables
value2 = 5
sum = value1 + value2 #adding two values together with "+" operator
print(sum) #dispalying the valueOperators:
Arithmetic Operators
Comparison Operators
Logical Operators
Assignment Operators
Last updated