Skip to content

Ehatsham/aguidetopython

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 

Repository files navigation

aguidetopython

This tutorial specially made for Python Beginners. A Guide to Python Programming Language helps newbie to learn Python Language in easy way. Python is free and easy to learn & We provide trusted content for learner to be expert in Python. Everyone can contribute here simple programs they know in Python so that newbies learning Python can refer to them and see how Python code looks and how simple it is to code in Python. We also encourage everyone reading this to goto issues tab and create atleast 1 issue for a beginner. 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.

  • Python is Interpreted: Python is processed at runtime by the interpreter. You do not need to compile your program before executing it. This is similar to PERL and PHP.

  • Python is Interactive: You can actually sit at a Python prompt and interact with the interpreter directly to write your programs.

  • Python is Object-Oriented: Python supports Object-Oriented style or technique of programming that encapsulates code within objects.

  • Python is a Beginner's Language: Python is a great language for the beginner-level programmers and supports the development of a wide range of applications from simple text processing to WWW browsers to games.

Prerequisites

You should have a basic understanding of Computer Programming terminologies. A basic understanding of any of the programming languages is a plus.

Python Features

Easy-to-learn: Python has few keywords, simple structure, and a clearly defined syntax. This allows the student to pick up the language quickly.

  1. Easy-to-read: Python code is more clearly defined and visible to the eyes.

  2. Easy-to-maintain: Python's source code is fairly easy-to-maintain.

  3. A broad standard library: Python's bulk of the library is very portable and cross-platform compatible on UNIX, Windows, and Macintosh.

  4. Interactive Mode: Python has support for an interactive mode which allows interactive testing and debugging of snippets of code.

  5. Portable: Python can run on a wide variety of hardware platforms and has the same interface on all platforms.

  6. Extendable: You can add low-level modules to the Python interpreter. These modules enable programmers to add to or customize their tools to be more efficient.

  7. Databases: Python provides interfaces to all major commercial databases.

  8. GUI Programming: Python supports GUI applications that can be created and ported to many system calls, libraries and windows systems, such as Windows MFC, Macintosh, and the X Window system of Unix.

  9. Scalable: Python provides a better structure and support for large programs than shell scripting.

Apart from the above-mentioned features, Python has a big list of good features, few are listed below:

It supports functional and structured programming methods as well as OOP.

It can be used as a scripting language or can be compiled to byte-code for building large applications.

It provides very high-level dynamic data types and supports dynamic type checking.

IT supports automatic garbage collection.

It can be easily integrated with C, C++, COM, ActiveX, CORBA, and Java.

Example

Here is an example:

print "Hello, Python!"

About

A Guide to Python Programming Language

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published