# DKUUG PYTHON LECTURE March 25 2008
# Copyright 2008 Svenne Krap. 
# This software is released under the BSD license.
# Please see the attached license

import time
import pprint

ts = time.time()
print "Hello, today is  " + time.strftime("%d/%m/%Y")
print "Sleeping for two and a quarter seconds"
time.sleep(2.25)

pprint.pprint(time.localtime())

for x in time.localtime():
        print x
ts2 = time.time()
print "time elapsed " + str(ts2-ts) + "seconds"


