Python格式化输出%.2f%% str.format()
Python2.6之后新增的⼀宗格式化字符串的函数。
⽤{}和:来替换以前的%
>>>"{} {}".format("hello","world")# 不设置指定位置,按默认顺序
'hello world'
>>>"{0} {1}".format("hello","world")# 设置指定位置
'hello world'
python格式化输出format>>>"{1} {0} {1}".format("hello","world")# 设置指定位置
'world hello world'
%⽅式
%是⼀种占位符。
符号意义
%s字符串
%d/%i⼗进制整数
%u过时的⼗进制表⽰
%o⼋进制
%x/%X⼗六进制整数
%f/%F浮点数
%e/%E科学计数法
%%输出%
对于%%,第⼀个%起到转义的作⽤,使结果输出百分号%
Reference 1.

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。