Python

From CSE330 Wiki
Revision as of 20:35, 16 July 2010 by Dumeyz (talk | contribs)
Jump to navigationJump to search

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