共计 280 个字符,预计需要花费 1 分钟才能阅读完成。
Python 中字符串格式化的方法有两种:
- 使用百分号(%)进行格式化,例如:
name = 'Alice'
age = 25
print('My name is %s and I am %d years old' % (name, age))
- 使用字符串的
format()
方法进行格式化,例如:
name = 'Bob'
age = 30
print('My name is {} and I am {} years old'.format(name, age))
推荐使用第二种方法,因为它更为灵活,支持更多的格式化选项。
丸趣 TV 网 – 提供最优质的资源集合!
正文完