python quick tutorial

Solutions on MaxInterview for python quick tutorial by the best coders in the world

showing results for - "python quick tutorial"
Al
24 Jul 2018
1What is python? 
2
3python is an easy-to-learn, future-proof programming language.
4It is particularly characterized by a large community and many libraries.
5
6You can download python here:
7https://www.python.org/downloads/
8
9You can find the most python libarys at the python package index:
10https://pypi.org/
11  
12I recommend you to start with a simple Hello World programm:
13  
14print("Hello World!")
15
16This page helped me out: https://www.stavros.io/tutorials/python/
17
18
19Have fun and don't give up :)
20