python占位符

字符串%s
name = 'alex'
print('Hi,%s,nice to meet you!'%(name))

Hi,alex,nice to meet you!

整数%d
age = 15
print('congralations!today is your %d th birthday!'%(age))

congralations!today is your 15 th birthday!

浮点数%f
rate = 33.33
print('今年的价格比去年高了 %f 。'%(rate))

今年的价格比去年高了 33.330000 。

你可能感兴趣的:(python)