If Statement
int: an integer
bool: logic; True or False
float:
str:
Arithmetical Operations
Power operator: the expression x ** y represents taking x to the power of y.
Integer division operator: when x and y are integers, x//y represents the integer division of x by y, in which we ignore the remainder.
Modulo operator: when x and y are integers, x%y represents the remainder after dividing x by y.