Python中字符串格式化的方法是什么

小億
85
2024-04-02 18:01:56

Python中字符串格式化的方法有兩種:

  1. 使用百分號(hào)(%)進(jìn)行格式化,例如:
name = 'Alice'
age = 25
print('My name is %s and I am %d years old' % (name, age))
  1. 使用字符串的format()方法進(jìn)行格式化,例如:
name = 'Bob'
age = 30
print('My name is {} and I am {} years old'.format(name, age))

推薦使用第二種方法,因?yàn)樗鼮殪`活,支持更多的格式化選項(xiàng)。

0