How to format a number into a percentage value in Python

2 Answers

0 votes
n = format(0.2, '%')

print(n)


'''
run:

20.000000%

'''

 



answered Dec 11, 2018 by avibootz
0 votes
x = 0.3
y = -0.4

print("{:.2%}".format(x))

print("{:.2%}".format(y))

 
 
 
'''
run:
 
30.00%
-40.00%
 
'''

 



answered Sep 2, 2021 by avibootz

Related questions

1 answer 186 views
1 answer 172 views
2 answers 206 views
1 answer 176 views
1 answer 166 views
...