阅读量:0
在Python中,format()
函数和%
操作符都用于格式化字符串。它们的功能是类似的,但format()
函数更加灵活和强大。
%
操作符:
name = 'Alice' age = 30 sentence = 'My name is %s and I am %d years old.' % (name, age) print(sentence)
format()
函数:
name = 'Alice' age = 30 sentence = 'My name is {} and I am {} years old.'.format(name, age) print(sentence)
主要区别:
format()
函数可以用{}
作为占位符,可以指定占位符的顺序,也可以用参数名称来指定占位符的值。format()
函数支持更多的格式化选项,如对齐、填充、精度等。format()
函数是面向对象的方法,可以通过调用方法来进行格式化。format()
函数是Python3推荐使用的字符串格式化方法。
综上所述,format()
函数在功能和灵活性上优于%
操作符,因此在Python中更推荐使用format()
函数来进行字符串格式化。