float to percentage python

Solutions on MaxInterview for float to percentage python by the best coders in the world

showing results for - "float to percentage python"
Alan
11 Jan 2017
1print "{0:.0%}".format(1./3)
2# OUTPUT 33%