Closed
Description
Currently we show 5 examples of division in part 1. We did this originally to show the difference between integer/float division. In Python 3 all division results in a float, so I think we can reduce the number of examples.
Currently we have:
4 / 2
1 / 2
3 / 2
15 / 2
1.0 / 2
Maybe we should change this to just a couple. I propose:
4 / 2
3 / 2