Harambe and ranges

There are two ways in which you can use ranges in python: 1st. You’ll just simply write x = range(10) print(x) And it will print all number that goes from 0 to 10. 2nd. You write almost the same thing but: x = range(0,10,2) print(x) This means that the range for x will start in… Continúa leyendo Harambe and ranges