Latest web development tutorials

Python based tutorial

python

Python is an interpreted, object-oriented, dynamic data type of high-level programming language.

Python at the end of 1989 was invented by Guido van Rossum, the first public release was released in 1991.

Languages ​​like Perl, Python source code is likewise follow GPL (GNU General Public License) agreement.

Now start learning Python!



Who should take this tutorial?

This tutorial is for want to start from scratch to learn Python programming language developers. Of course, this tutorial will be a number of modules in depth, so you better understand Python applications.



Before this tutorial you need to know

Before proceeding with the tutorial, you should understand some basic computer programming terminology. If you learned PHP, ASP and other programming languages, it will help you quickly understand the Python programming.



Execute Python program

For most programming languages, first introductory programming code is "Hello World!", Use the following code to Python output "Hello World!":

Examples (Python 2.0+)

#! / usr / bin / python print "Hello, World!";

Running instance »

Python 3.0+ version has a built-in function as the print, the correct output code as "Hello World!":

Examples (Python 3.0+)

#! / usr / bin / python3 print ( "Hello, World!" );

Running instance »

?related articles

Python IDE (Integrated Development Environment) Introduction

Python coding standard (Google)

Python 3.X versions of tutorial