Python Operators

Python Operators

Python Operators, Arithmetic Operators, Comparison (Relational) Operators, Assignment Operators, Logical Operators, and Bitwise Operators. Operators in Python Language Operators are used to perform Arithmetic, Comparion, Assignment, and Logical Operations. Operators are used to perform operations on variables and values Example: a=10 b=20 c=a*b d=12+34 print(c) #200 print(d) # 46 print(100/4) # 25.0 print(a+b*7) # 150 … Read more