Python - Easy programming

Python is a widely used, interpreted language, probably the easier to learn and to use. One day is sufficient to start programming with Python. A version of the language is available under Windows, Linux and any platform. Using a such tool may cut your programming time cost by two at least. The list built-in functions make it a successor for Awk and any other text processing language.
 More about the language on the official site below. It is free...

Features

Python is an object oriented, interpreted language.

Python 3

Version 3.0 changes the syntax of the language which makes it partially incompatible with the previous ones.

For more information, see What's new in Python.

Why use Python?

With Python you can write in some hours tools that require days to program with other languages. It is very easy to learn, and has powerful features as lists, tuples, dictionaries, allowing you to translate your mind directly as lines of code.

Sites

Sample code

Displaying chars of a string.

s = "demo"
for c in s:
print c

Displaying elements of a list.

listdemo = [1,2,3] + [4,5]
subdemo = listdemo[1:3]
for num in subdemo:
    print num
>>> should print: 2 3 4
Programming languages AspectJ - Basic - C - C++ - C# - Eiffel - Java - JavaScript - JavaFX - Pascal - PHP - Python - Rexx - Ruby - Scala - Scriptol - Tcl - HTML - XML - XAML - XUL - SQL

(c) 2006-2009 Scriptol.com