右对齐 字符靠右,左边补空格到指定长度,超出长度原样输出。居中对齐 字符居右,两边补空格到指定长度,超出长度原样输出。简单记忆以上三种方式:箭头指哪,字符去哪。固定小数位 功能和Round差不多,支持四舍五入。千位分隔符 数字按这种方式输出,妈妈再也不用担心我数数拿指头比划了。二进制输出 没什么卵用,聊...
居中对齐:使用 `.` 符号和指定的宽度,例如 `f'key: .10'`,输出结果为 `key: .###.`,宽度为 10,左右两侧各填充 3 个空格。通过这些简单的符号和宽度指定,f-string 可以轻松实现各种对齐和格式化需求,让代码更加整洁和易读。0 0 发表评论 发表 作者最近动态 随忆solo风满哇 2024-11-25 前海的夜晚与后海...
字符串对齐 f-string 默认为右对齐,我们可以修改对齐方式: text = 'python' print(f'{text:>10}') # 右对齐 print(f'{text:<10}') # 左对齐 print(f'{text:^10}') # 居中对齐 print(f'{text:*^10}') # 居中对齐,用*补齐空白 n = 10 print(f'{text:#^{n}}') # 参数嵌套,居中对齐,...
13. 字符串对齐 f-string 默认为右对齐,我们可以修改对齐方式: text = 'python' print(f'{text:>10}') # 右对齐 print(f'{text:<10}') # 左对齐 print(f'{text:^10}') # 居中对齐 print(f'{text:*^10}') # 居中对齐,用*补齐空白 n = 10 print(f'{text:#^{n}}') # 参数嵌套,居中...
print(f'{text:#^{n}}') # 参数嵌套,居中对齐,用~补齐空白 # 输出: python python python **python** ##python## 标准化显示宽度 当我们需要对 f-string 打印内容的显示最小宽度进行限制时,譬如打印出类似表格的结构,可以这样写: for x in range(1,11): ...
name = 'raelum' print(f'{name:>20}') # 右对齐,填充字符串长度至20 # raelum print(f'{name:<20}') # 左对齐,填充字符串长度至20 # raelum print(f'{name:^20}') # 居中对齐,填充字符串长度至20 # raelum 使用其他字符填充 name = 'raelum' print(f'{name:a>20}') # aaaaaaaaaaaaaa...
比如,下面对齐输出name和value。 name ="var"value =100# >20 表示右对齐,并且占用20个字符的空间print(f"{name:>20}:{value}")# <20 表示左对齐,并且占用20个字符的空间print(f"{name:<20}:{value}")# ^20 表示居中对齐,并且占用20个字符的空间print(f"{name:^20}:{value}") ...
居中对齐字符串 >>> hello = "world">>> f"{hello:^11}"' world '>>> f"{hello:*^11}"'***world***'# Extra padding is added to the right>>> f"{hello:*^10}"'**world***'# N shorter than len(hello)>>> f"{hello:^2}"'world'大数据值显示添加千位分割符号 >>> big_...
print(f'{text:#^{n}}')#参数嵌套,居中对齐,用~补齐空白 #输出: python python python **python** ##python## 标准化显示宽度 当我们需要对 f-string 打印内容的显示最小宽度进行限制时,譬如打印出类似表格的结构,可以这样写: forxinrange(1,11): ...
3、居中对齐及填充 #=== 居中对齐 ===#print('{:^5}'.format('张三'))# 输出:' 张三 'print('{:*^5}'.format('张三') ) # 常数5表示占5个字符, >: 表示右对齐, *表示用*号进行填充,# 输出:'*张三**' 4、截取指定长度字符串