A nice model for thinking about programming is called Sequence-Selection-Iteration.
arithmetic operators will return a numeric value ''' +: plus, -: minus, x*: times, /: divide, %: modulo,*
Example : 25%3 = 3**8 + 1 = 1 25%5 = 55 + 0 = 0 **: expo, //: floor division
Read More:
Floor Division in Python - GeeksforGeeks
Boolean operation will return a boolean (True or False) value '''
greater than , < less than, = greater or equal to, <= less or equal to, == equal to, != not equal to
'''