![]() |
This article is a stub. You can help Programmer's Wiki by expanding it.
Remember to remove this when the stub is fixed. |
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)