Python is an easy to learn, powerful programming language. It has efficient high-level data structures and a simple but effective approach to object-oriented programming. Python’s elegant syntax and dynamic typing, together with its interpreted nature, make it an ideal language for scripting and rapid application development in many areas on most platforms. (read all...)
debarm:~# apt-get update debarm:~# apt-get install python
root@OpenWrt:~# opkg update root@OpenWrt:~# opkg install python
This is the “Hello world !” source code example.
print "Hello world !"
Save it with in hello.py file then run it typing:
# echo "print \"Hello world !\"" > hello.py # python hello.py Hello world !