#! /usr/bin/env python # -*- coding: utf-8 -*- """ Solutions for the [Hello World example on IntroToPython.org](http://introtopython.org/hello_world.html). Credit: Lilian Besson for http://perso.crans.org/besson/cs101/solutions/intro/ License: GPLv3 """ ## "Hello world" in Python # When programmers are learning a new language, we tend to write a one-line program that prints some version of the message "Hello world!" this is a simple program that shows whether your computer is properly set up to run Python programs. print "Hello world from Mahindra Ecole Centrale!!"