Thursday, January 23, 2020

What is Python | Introduction of Python


What is Python 

Python is a general-purpose interpreted, interactive, object-oriented, and high-level programming language. It was created by Guido van Rossum during 1985- 1990. Like Perl, Python source code is also available under the GNU General Public License (GPL). This tutorial gives enough understanding on Python programming language.
This tutorial is designed for software programmers who need to learn Python programming language from scratch.
You should have a basic understanding of Computer Programming terminologies. A basic understanding of any of the programming languages is a plus.

#!/usr/bin/python

print "Hello, Python!"

No comments:

Post a Comment

Python Basic Operators

Python Basic Operators Operators are the constructs which can manipulate the value of operands. Consider the expression 4 + 5 = 9. ...