标签:python
1.关于格式化输出的问题。
将一个浮点数按百分数输出,如0.234 --> 23.4%
print(format(0.234,‘.2%‘))将输出23.40% ,其他控制小数点位数的做法只要按照‘m.n%’中更改m,n即可。
Python学习笔记【跟新版】
原文地址:http://synh317.blog.51cto.com/10237005/1652081