1. 程式人生 > >python字串站位符的簡單使用

python字串站位符的簡單使用

常用的分別是:
%s →字串
%d →整數
%f →浮點數
例項:
print(‘您好我是:%s,今年:%d歲了,身高是:%f米’ % (‘Peter’, 25, 1.78))
>>>您好我是:Peter,今年:25歲了,身高是:1.780000米
浮點數精度太高的話請使用下列語句:
print(‘您好我是:%s,今年:%d歲了,身高是:%.2f米’ % (‘Peter’, 25, 1.78))
>>>您好我是:Peter,今年:25歲了,身高是:1.78米