Python

By @lordrazor1/26/2018python

Welcome Everybody,

this is my first quick Tutorial about Python. Let's start with the following:
What is Python?
Python is an interactive Programming Language which is really popular for small Scripts and Programs.
It is easy to handle (even for newbies) and results can be seen very quick.

This tutorial requires basic knowledge and computational skills.

To get started, download Python here: https://www.python.org/
Important: For this Tutorial you need a Version of 3.0 or higher!

If you've finished, create a file with a editor of your choice and name it "helloworld.py".
Type the following line inside:

print("Hello World!")
input()

So, what is it doing?
The first line should be self-explanatory, it just prints "Hello World!" at the Command Line.
The second line is not necessary, but it prevents the command line window to close after a short time (Only necessary if you are on Windows).

Congrats, you just wrote your first little program!
In the next part, we will look at variables and how they are used in Python.

If you have any Questions concerning this Tutorial or Python in General, do not hesitate to PM me!

3

comments