• 主页

  • 投资

  • IT

    🔥
  • 设计

  • 销售

关闭

返回栏目

关闭

返回python栏目

45 - 自带方法 - 规则.format(原始数据) - 格式化

作者:

贺及楼

成为作者

更新日期:2024-10-27 17:49:44

format()

格式化format()直接{}符号

Python 中的 format() 函数用于格式化字符串。它允许你插入变量或值到字符串中的特定位置,这些位置由花括号 {} 表示的占位符指定。format() 可以用于各种类型的数据格式化,包括数字、字符串等,支持精确控制格式,如小数点后的位数、填充字符、对齐方式等。这个函数在生成格式化输出、构建动态消息和数据展示时非常有用。

  1. >>>"{} {}".format("hello", "world") # 不设置指定位置,按默认顺序
  2. 'hello world'

格式化format直接{}符号

格式化format()指定参数位置{1}{2}

  1. >>> "{1} {0} {1}".format("hello", "world") # 设置指定位置
  2. 'world hello world'

格式化format指定参数位置

格式化format()指定参数名字{a}{b}

  1. 'hello {name1} i am {name2}'.format(name1='Kevin', name2='Tom')
  2. # hello Kevin i am Tom

格式化format指定参数名字

https://blog.csdn.net/zhang89xiao/article/details/53818906