Open writing projects/Scientific Programming with Python and Subversion/Appendices/Introduction to Python: Difference between revisions

From OpenWetWare
Jump to navigationJump to search
(page creation - Very rough code snippets detailing some of the main features of python.)
 
mNo edit summary
Line 4: Line 4:


=== Variables ===
=== Variables ===
<syntax="python">
<syntax type="python">
</syntax>
</syntax>


=== Functions ===
=== Functions ===
<syntax="python">
<syntax type="python">
</syntax>
</syntax>


=== Classes ===
=== Classes ===
<syntax="python">
<syntax type="python">
</syntax>
</syntax>


=== Exceptions ===
=== Exceptions ===
<syntax="python">
<syntax type="python">
</syntax>
</syntax>


=== Modules ===  
=== Modules ===  
<syntax="python">
<syntax type="python">
</syntax>
</syntax>

Revision as of 18:59, 26 May 2008

This page is part of the Open Writing Project Scientific_Programming_with_Python_and_Subversion. (More Open Writing Projects.)



Julius B. Lucks 21:58, 26 May 2008 (EDT): Very rough code snippets detailing some of the main features of python.

Variables

<syntax type="python"> </syntax>

Functions

<syntax type="python"> </syntax>

Classes

<syntax type="python"> </syntax>

Exceptions

<syntax type="python"> </syntax>

Modules

<syntax type="python"> </syntax>