Python

The only other programming language that I have mentioned is php which we will be looking on later. But there is a lot of difference between php and python. Python is usually not used in html. It is used mostly in the back end of any computer. That is why most of the programmer prefer to use python when making a robot or in command line. Lets see some more in deep.

Why python?

I personally recommend many young programmers to learn python. Why? The reason is that they are very simple programs. Even if you want to run a for loop (will see later), you just havt to use this range(). You can simply guess what goes inside the brackets. The number until which you want to repeat. So it is quiet simple.

Downloading process

Ok enough of all the information. Lets start our first program. To build up your strength in python you must have a platform to write your program. All you have to do is go to the python download page You can download the latest python shell version. You will have built in modules in python, most importantly the pip module which is used to download other important modules.

If you are not able to do it, don't worry there is another option. This is to use visual studio code. It is a text editor and has a lot of other options like git control and built in terminal and a debugger. The fun part in using this is that you will look like a programming geek in front of your friends. But it is not that complicated to run the code.

You will have to use this line on your VS code terminal if you are using macOS :

python3 window.py

If you have windows, it is similar:

python window.py

Note: you have to make sure that you call that program from the correct directory.

Python basics

Python Strings and Numbers

Before going in deep you will have to know ABCs and 123s in python. Which is strings and numbers. so let us see what we can do with strings and numbers. Click here: Strings and Numbers