Problem
First, figure out on paper the values of each of the following. Then, using the Python interpreter, check out result of each below
1. 5%2
2. 9%5
3. 15%12
4. 12%15
5. 6%6
6. 0%7
7. 7%0
8. 6/4
9. 6//4
Can you explain why you have error in part (7)?
What is difference of using / in 6/4 and // in 6//4 in (8) and (9)?