#!/usr/bin/python
############
# HELLO_PYTHON_1.py
# This program displays the string “hello”.
# It first shows the path to python, then creates a short loop, and then prints the string.
############ 
while (1) :
        print "Hello!";
