一、数据类型
1、字符串
1.1设置字符串格式
1.1.1用{}代替替换字段
from math import pi "{name} is approximately {value:.2f}".format(value=pi, name="π") #转换标志:叹号,将使用指定函数将对象转换为字符串print("{pi!s} is 3.14".format(pi="π") #格式说明符:冒号,让我们详细的指定最终格式,包括格式类型(如字符串、浮点数),字符宽度和数的精度。"{num:10}".format(num=3) #字符长度为10位"{name:10}".format(name="Bob"} #对齐,<:左对齐,>:右对齐,^:居中
1.1.2字符串方法
center:
find:
join:
lower:
replace:
split:
strip:
translate:
参考:python基础教程(第三版)
原文地址:https://www.cnblogs.com/tonorth123/p/10291190.html
时间: 2024-11-09 02:35:46