Difference between revisions of "Python"

From CSE330 Wiki
Jump to navigationJump to search
m
Line 1: Line 1:
 
=Getting Started=
 
=Getting Started=
 +
 +
Python is an interpreted language with familiar syntax. It's a great language to use for parsing text files and rapid application development. Rather than the time-consuming write-compile-test-rewrite-recompile-retest-etc. cycle of languages like C and C++, Python scripts run through an interpreter. This eliminates the compile step and speeds up the development process.
 +
 +
=Using Python=

Revision as of 20:35, 16 July 2010

Getting Started

Python is an interpreted language with familiar syntax. It's a great language to use for parsing text files and rapid application development. Rather than the time-consuming write-compile-test-rewrite-recompile-retest-etc. cycle of languages like C and C++, Python scripts run through an interpreter. This eliminates the compile step and speeds up the development process.

Using Python