Python tutorials with source code, examples, guides, and tips and tricks for Windows and Linux development.
>>> print "See %d%%" % (0.77 * 100) See 77%>>> print "See {0:.0%}".format(0.77)See 77%>>>