Python的format()函數有以下功能:
格式化字符串:可以使用花括號 {} 在字符串中指定占位符,然后使用 format() 函數來替換占位符為指定的值。 例如:‘Hello, {}!’.format(‘Python’) 將會返回 ‘Hello, Python!’。
格式化數字:可以使用花括號 {} 在字符串中指定格式化的方式來顯示數字。 例如:‘The value is {:.2f}’.format(3.14159) 將會返回 ‘The value is 3.14’。
格式化日期和時間:可以使用花括號 {} 在字符串中指定格式化的方式來顯示日期和時間。 例如:‘Today is {:%Y-%m-%d}’.format(datetime.datetime.now()) 將會返回 ‘Today is 2021-01-01’。
格式化字典:可以使用花括號 {} 在字符串中指定字典中的鍵來替換為對應的值。 例如:‘My name is {name} and I am {age} years old.’.format(name=‘Alice’, age=25) 將會返回 ‘My name is Alice and I am 25 years old.’。
格式化列表和元組:可以使用花括號 {} 在字符串中指定列表或元組中的索引來替換為對應的值。 例如:‘The first element is {} and the second element is {}.’.format(my_list[0], my_tuple[1])。
格式化對象:可以使用花括號 {} 在字符串中指定對象的屬性來替換為對應的值。 例如:‘The name is {obj.name} and the age is {obj.age}.’.format(obj=my_object)。