abhijangda
Padawan
There are threads
Java Queries Here..
Post ur C/C++ Programs Here
C/C++ Beginner's Guide and Post Basic Questions Here
But no one like these related to Python, so I thought of creating a similar thread like those above.
So post your Python related queries, your Python Programs and here you will find some basic knowledge about Python also.
You can download Python from its official website, current stable version is 3.2.
IDE available for Python are IDLE, Eric, Eclipse and many others.
Python tutorials
The best one is Python's own tutorial.
docs.python.org
Others are
Python Tutorial
The Python tutorial
Just google and you will find many others.
Here's how to run a Hello World program in Python.
First Python must be installed in the system. In Linux (most distros) and Mac OS X, it's preinstalled while in Windows, it's recommended to use Activestate's ActivePython. Download it here.
First open your favourite text editor (text editor like Notepad, gedit etc. not MS Word etc.). Then paste the following code.
Save it as .py file.
In Windows, open command prompt go to the path where Python is installed. then type
In Linux, just open terminal and enter
You will get output as
For 2010, Python was TOIBE's Programming Language of the Year.
Good Luck!!
Java Queries Here..
Post ur C/C++ Programs Here
C/C++ Beginner's Guide and Post Basic Questions Here
But no one like these related to Python, so I thought of creating a similar thread like those above.
So post your Python related queries, your Python Programs and here you will find some basic knowledge about Python also.
Wikipedia said:Python (Python Programming Language – Official Website) is an interpreted, general-purpose high-level programming language whose design philosophy emphasizes code readability.Python aims to combine "remarkable power with very clear syntax", and its standard library is large and comprehensive. Its use of indentation for block delimiters is unique among popular programming languages. It was designed by Guido van Rossum.
Python supports multiple programming paradigms, primarily but not limited to object-oriented, imperative and, to a lesser extent, functional programming styles. It features a fully dynamic type system and automatic memory management, similar to that of Scheme, Ruby, Perl, and Tcl. Like other dynamic languages, Python is often used as a scripting language, but is also used in a wide range of non-scripting contexts. Python is a cross-platform language available for Windows, Linux and Mac. In Linux, Python is primarily used for creating GUI programs and as scripting language. Fedora's installer Anaconda, its package installer yum, Package Kit, gedit and many other softwares have been written in Python.
(All this through wikipedia(Python (programming language) - Wikipedia, the free encyclopedia).
You can download Python from its official website, current stable version is 3.2.
IDE available for Python are IDLE, Eric, Eclipse and many others.
Python tutorials
The best one is Python's own tutorial.
docs.python.org
Others are
Python Tutorial
The Python tutorial
Just google and you will find many others.
Here's how to run a Hello World program in Python.
First Python must be installed in the system. In Linux (most distros) and Mac OS X, it's preinstalled while in Windows, it's recommended to use Activestate's ActivePython. Download it here.
First open your favourite text editor (text editor like Notepad, gedit etc. not MS Word etc.). Then paste the following code.
Code:
print "Hello World"
Save it as .py file.
In Windows, open command prompt go to the path where Python is installed. then type
Code:
python <your .py file path>
In Linux, just open terminal and enter
Code:
python <your .py file path>
You will get output as
Code:
Hello world
For 2010, Python was TOIBE's Programming Language of the Year.
Good Luck!!
Last edited: