1"""
2 '//' is floor division on python which mean
3 the result will be rounded down (eg: 3.14 become 3), so
4
5 '5 // 2' will be 2
6"""
1Arithmetic operators: Arithmetic operators are used to perform mathematical
2 operations like addition, subtraction, multiplication and division.
3