what are the five integer operators in python code example
Example 1: python exponent operator
#python exponent operator
num = 2
new_num = num**2
#answer would be 4
Example 2: logical operators in python
condition1 and condition2
condition1 or condition2
not condition