Basic Python Tutorial
This is an article for a friend who is learning Python from scratch. I will be adding to it over the next few weeks when I have time. If you are using Python on Windows, use the install here. I would also recommend downloading Visual Studio here. It is an IDE which will give you some tips as you go along. After installing, go to the extensions on the top left of the screen and install the Python extension. Extensions is the fifth icon down Very Basic Python A few basic functions: print() will write whatever is in the brackets to the screen. Eg print(10) would appear as 10 on the screen.# the hashtag sign on Python is the for commenting. It means that the program won't read whatever is…