1. 程式人生 > >format的三種用法

format的三種用法

print 用法 format for pos name bsp ike div

1,類似格式話輸出的占位符s%.

#print(‘my name is {} ,I like {} ‘,format(‘xiong‘,‘reading‘))

2,

#print(‘{0} {1} {0}’,format(‘a’,‘b’))

3,

#print(‘{name} {age}’,format(‘a’,18))

format的三種用法