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

Creation of strings

A string is a sentence that you’ll use in several times, and it is so easy to use, and you’ll use it everytime you make a program. This is an example: And that’s it! When you run the program you’ll get your string Gg ezpz