Operators: ========== Assignment Operator: ==================== -> '=' Ex: x = 97 print(x) # 97 -> when an assignment operator can combine with other operators like arithmetic operators then we can get "compound operators". +=,-=,*=,/=,//=,%= and **= x = 100 print("The Value of x = ",x) # x = x + 100 x += 100 print("The Value of x = ",x) # x = x - 20 x -= 20 print("The Value of x = ",x) ====================================================== Relational Operators: ====================== -> also called as 'Comparison operators" -> return values of relational operators are: True/False Ex: x = 10 y = 20 x == y ==> 10 == 20 False x > y ==> 10 > 20 False x < y ==> 10 < 20 True -> Relational Operators are: <, >, <=, >=, == and !=