Difference between revisions of "Python"

From Got Opinion Wiki
Jump to navigation Jump to search
m
Line 18: Line 18:


[[Python programming]]
[[Python programming]]
== Python on Linux ==
=== Linux Mint 14 Nadia with Cinnamon ===
The basic install of Mint 14 with Cinnamon comes with Python 3.2.3 and 2.7.3.
Invoking Python 3.2 Interpreter
<pre>$ python3.2
Python 3.2.3 (default, Oct 19 2012, 19:53:16)
[GCC 4.7.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>></pre>
'''Note: I don't use Python 2.x versions'''

Revision as of 10:52, 5 December 2012

My Python notes

Python resources

Books

Dive Into Python book

Python Frameworks

Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design.

Dreamhost Django on Dreamhost

Django book

Python programming notes

Python programming

Python on Linux

Linux Mint 14 Nadia with Cinnamon

The basic install of Mint 14 with Cinnamon comes with Python 3.2.3 and 2.7.3.

Invoking Python 3.2 Interpreter

$ python3.2
Python 3.2.3 (default, Oct 19 2012, 19:53:16) 
[GCC 4.7.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>>

Note: I don't use Python 2.x versions