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'))