I’ve been hearing a lot about “Python”, so I decided to pick up a book “Python Programming for Absolute Beginner” by Michael Dawson. Today, I’m going to share with you how to write classic “Hello World” program in Python.

Fire your favorite text editor program, in my case I use vim.

kenno$ vim helloworld.py

Then type the following code:

# Hello World<br /> print "Hello World!"

Save it, and execute it with the following command:

kenno$ python helloworld.py<br /> Hello World!

``It is easy, isn’t it?