首页
技术小册
AIGC
面试刷题
技术文章
MAGENTO
云计算
视频课程
源码下载
PDF书籍
「涨薪秘籍」
登录
注册
Python 中的 f-string
基本的字符串格式化
f-string 的限制
格式化一个表达式
使用 f-string 来调试代码
格式化数字的不同进制
用 f-string 打印对象
使用f-string设定浮点数精度
将一个数字格式化为百分数
调整或者增加 f-string 的填充
转义符号
使字符串居中
格式化千分位
使用科学计数法显示一个数字
在 f-string 中使用 if-else
在 f-string 中使用字典
用 f-string 拼接字符串
格式化 datetime 对象
修复f-string的非法格式错误
在字符串前补零
处理多行f-string
当前位置:
首页>>
技术小册>>
Python合辑5-格式化字符串
小册名称:Python合辑5-格式化字符串
21、处理多行f-string(换行符的处理) 可以用换行符\n来打印多行文本。 ``` >>> multi_line = (f'R: {color["R"]}\nG: {color["G"]}\nB: {color["B" ...: ]}\n') >>> multi_line 'R: 123\nG: 145\nB: 255\n' >>> print(multi_line) R: 123 G: 145 B: 255 ``` 还可以用三引号实现多行字符串。这样不单能增加换行符,还能有Tab。 ``` >>> other = f"""R:{color["R"]} ...: G:{color["G"]} ...: B:{color["B"]} ...:""" >>> print(other) R: 123 G: 145 B: 255 ``` 用 Tab 的代码样例 ``` >>> other = f''' ...:this is an example ...: ...:^Iof color {color["R"]} ...: ...: ''' >>> other '\nthis is an example\n\n\tof color 123\n \n' >>> print(other) this is an example of color123 >>> ```
上一篇:
在字符串前补零
该分类下的相关小册推荐:
Python合辑10-函数
Python数据分析与挖掘实战(上)
剑指Python(磨刀不误砍柴工)
Python神经网络入门与实践
Python合辑14-面向对象编程案例(下)
Python合辑13-面向对象编程案例(上)
Python合辑6-字典专题
Python自动化办公实战
Python编程轻松进阶(五)
Python合辑1-Python语言基础
Python合辑2-字符串常用方法
Python与办公-玩转Word