翼度科技»论坛 编程开发 python 查看内容

24 - 格式化字符串

15

主题

15

帖子

45

积分

新手上路

Rank: 1

积分
45
格式化字符串

笔者认为格式化字符串 (formatted string) 在任何语言里都值得单独拿出来做个笔记,因为它是编程中控制输出的重要一环。
Formatted String Literals (f-string)

官网的翻译为 “格式化字符串字面值”。比较常用的格式化方法。
在字符串前加上前缀 f 或 F ,通过 {expression} 替代区域 (replacement field),把需要表达的内容添加到字符串内。
  1. >>>print(f'1 + 1 = {1 + 1}')
  2. 1 + 1 = 2
  3. >>>print(f'1 + 1 = {1 + 1:3d}')
  4. 1 + 1 =   2
  5. >>>print(f'3 / 2 = {3 / 2:4.1f}')
  6. 3 / 2 =  1.5
复制代码
Python 会计算 替代区域 表达式内的内容,然后插入到原字符串内进行打印。在 替代区域 中可以加入 format specifiers 来格式化插入的方式。
替代区域(replacement field) 的语法格式:
  1. replacement_field ::=  "{" [field_name] [debug] ["!" conversion] [":" format_spec] "}"
  2. field_name        ::=  arg_name ("." attribute_name | "[" element_index "]")*
  3. arg_name          ::=  [identifier | digit+]
  4. attribute_name    ::=  identifier
  5. element_index     ::=  digit+ | index_string
  6. index_string      ::=  <any source character except "]"> +
  7. debug             ::=  "="
  8. conversion        ::=  "r" | "s" | "a"
  9. format_spec       ::=  format-spec:format_spec
复制代码
(format_spec) 语法格式:
  1. format_spec     ::=  [[fill]align][sign]["z"]["#"]["0"][width][grouping_option]["." precision][type]
  2. fill            ::=  <any character>
  3. align           ::=  "<" | ">" | "=" | "^"
  4. sign            ::=  "+" | "-" | " "
  5. width           ::=  digit+
  6. grouping_option ::=  "_" | ","
  7. precision       ::=  digit+
  8. type            ::=  "b" | "c" | "d" | "e" | "E" | "f" | "F" | "g" | "G" | "n" | "o" | "s" | "x" | "X" | "%"
复制代码
笔者认为这样的语法格式还是很清晰的。至于具体每个缩写代表,笔者建议直接翻看文档,这里就不直接照抄了。常见的选项见多了就会了,见不到的人不会需要那些内容。
字符串 format() 方法

format() 方法 f-string 很类似,不过它实现了字符串与 替代区域 的拆分。
调用此方法的字符串可以包含字符串字面值或者以花括号 {} 括起来的替换域。
每个替换域可以包含一个位置参数的数字索引,或者一个关键字参数的名称。 返回的字符串副本中每个替换域都会被替换为对应参数的字符串值。
  1. >>>a = "abc{0}{1}"
  2. >>>print(a.format('x', 'y'))
  3. abcxy
  4. >>>print(a.format('cool', 'wa'))
  5. abccoolwa
  6. >>>b = 'yoo{yes}{no}'
  7. >>>b.format(yes='haha', no='nono')
  8. 'yoohahanono'
复制代码
printf 风格格式化

Python 过去使用这种格式化规则,但现在 Python 建议转到 f-string 或 format() 方法。不过笔者仍然看到很多人使用这种方法。
  1. >>>print('%(language)s has %(number)03d quote types.' %
  2. ...      {'language': "Python", "number": 2})
  3. Python has 002 quote types.
  4. >>>print('%s has %03d quote types.' %("Python", 2))
  5. Python has 002 quote types.
复制代码
简单的来说就是

  • 用 %["("keywords")"][flag][width]["." precision][type] 在字符串中占位,
  • 然后用 % 运算符将需要的内容带入字符串

    • 如果提供 keywords,则 % 需要跟字典
    • 否则 % 需要跟元组。

手动设置输出格式

笔者这里记录一下除了上述三种格式化方法以外,还可以自己设定输出格式。
笔者才疏学浅,暂时没见过也用不上这种方式,因此不多记录。
ref:
Python docs: Fancier Output Formatting
Python docs: Format Specification Mini-Language
Python docs: python 3.8 - f-string support for self-documenting and debugging
Python docs: str.format()
Python docs: printf-style string formatting


来源:https://www.cnblogs.com/wanderoff-night/p/18020653
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

举报 回复 使用道具