1. 程式人生 > >python 格式化字串

python 格式化字串

 

 

1、元組形式

print('hello %s and %s' % ('df', 'another df'))

 

2、字典形式

print('hello %(first)s and %(second)s' % {'first': 'df', 'second': 'another df'})

 

3、format

print('hello {first} and {second}'.format(first='df', second='another df'))