TUTORIAL OF PYTHON

About the Tutorial 

Python can be described as a general purpose, interpreted interoperable, object-oriented as well as a high-level language for programming. It was developed by Guido van Rossum during 1985 between 1985 and 1990. As with Perl, Python source code is also accessible as part of the GNU General Public License (GPL). Python is named in honor of the name of a TV Show called 'Monty Python's Flying Circus' and not named after Python the snake. Python 3.0 was released in 2008. While this version was supposed to be backward compatible however, in the following years some of its most important features were ported back to work with version 2.7. This tutorial provides enough information of the Python 3 version programming language. You can refer to this page to the Python 2 tutorial.

Audience

This tutorial is intended for programmers working in software who wish to improve their Python abilities up to Python 3. It can be also used as a way for users to master the Python programming language starting from beginning to finish.

Prerequisites

You must have a good knowledge about Computer Programming terminologies. An understanding of the basics of all programming languages is an advantage.

Execute Python Programs 

For the majority of the examples provided in this tutorial, you'll see the Try it option therefore use it and have fun learning. Check out the following example by using the Try It option located at the upper right hand corner of the example code box.
#!/usr/bin/python3 print ("Hello, Python!") 

Comments