# An introduction to variable declarations
number = 7 # no need of declaration of variable. Python is dynamically-typed language
print "There are %d days in a week."%number
# A simple program with two declarations
minutes = 60
hours = 24
print "There are %d minutes in an hour."%minutes
print "And %d hours in a day."%hours
# prints values of two variables
dozens = 17
units = dozens * 12
print "%d units is equivalent to %d dozen."%(units,dozens)