Skip to main content

Command Palette

Search for a command to run...

Python World

Published
1 min readView as Markdown

Introduction to Python

Python is a high-level, interpreted, interactive and object-oriented scripting language which finds its application in many areas like -

  • Webscripting

  • 3d Modelling (Blender)

  • Desktop Applications -`Games (Pygame)

  • Scientific usage (SciPy/NumPy)

Python source code is available under the GNU General Public License (GPL). There are two major Python versions, Python 2 and Python 3.

Python Implementations

  • CPython - Python implementation on standard C language.

  • Jython - Python implementation with Java virtual machine to blend with Java.

  • Pypy - Python implemented in Python and its Just-in time compiler making it fastest.

  • Iron Python - for windows, which implements common runtime libraries to interface with .NET

S

Informative