Exercises with Python
Task: print numbers from n1 to n2
This is a pretty simple exercise to start. A user inputs two values n1
and n2
, the program should print all numbers between these two.
We start with a simple solution, later we find some problems in it.