详细讲解python四种字符串格式化的方法
>>> website = '编程领地'
>>> 'hello , 欢迎来到%s'%(website)
'hello , 欢迎来到编程领地'
>>> website = '编程领地'
>>> 'hello ,欢迎来到{}'.format(website)
'hello ,欢迎来到编程领地'
>>> website = '编程领地'
>>> print(f'hello,欢迎来到{website}')
hello,欢迎来到编程领地
使用字符串拼接的方式实现字符串的格式化。
>>> website = '编程领地'
>>> 'hello,欢迎来到'+website
'hello,欢迎来到编程领地'