To format the output of print you can do the following:
print 'name: %s' %name
If you have more than one variable you can use a tuple:
print 'name: %s lastname: %s' %(name, lastname)