Maybe0829
2021-08-16 19:21
print('第一种方式, 普通方式')
template = 'Life is short,{}'
a = 'you need Python'
result = template.format(a)
print(result)
print('第二种方式, 指定顺序')
template = 'life {0} short,{1}need {2}.'
result = template.format('is','you','Python')
print(result)
结合2-2 第一个Python程序的练习去看,应该是Python默认是以ASCII作为编码方式,如果在自己的Python源码中包含了中文需要在第一行加上:
#coding=utf-8
加上后就运行成功啦
result = template.format()这个只能每次接收一个字符串
Python3 入门教程(新版)
154157 学习 · 1075 问题
相似问题
回答 4
回答 2
回答 3
回答 2
回答 1