千锋教育-做有情怀、有良心、有品质的职业教育机构

400-811-9990
手机站
千锋教育

千锋学习站 | 随时随地免费学

千锋教育

扫一扫进入千锋手机站

领取全套视频
千锋教育

关注千锋学习站小程序
随时随地免费学习课程

上海
  • 北京
  • 郑州
  • 武汉
  • 成都
  • 西安
  • 沈阳
  • 广州
  • 南京
  • 深圳
  • 大连
  • 青岛
  • 杭州
  • 重庆
当前位置:重庆千锋IT培训  >  技术干货  >  python 字符串格式化

python 字符串格式化

来源:千锋教育
发布人:xqq
时间: 2023-11-12 16:55:29

1."旧式字符串解析(%操作符)"

'Hello,%s'%name

"Hello,Bob"

'Hey%(name)s,thereisa0x%(errno)xerror!'%{

"name":name,"errno":errno}

'HeyBob,thereisa0xbadc0ffeeerror!'

2."新式"字符串格式化(str.format)

'Hello,{}'.format(name)

'Hello,Bob'

'Hey{name},thereisa0x{errno:x}error!'.format(name=name,errno=errno)

'HeyBob,thereisa0xbadc0ffeeerror!'

3.字符串插值/f-Strings(Python3.6+)

python3.6新出的,本人用了这个之后,果断抛弃其他方法,真的太强大了!!!

name=Bob

f'Hello,{name}!'

'Hello,Bob!'

defgreet(name,question):

...returnf"Hello,{name}!How'sit{question}?"

...

greet('Bob','going')

"Hello,Bob!How'sitgoing?"

4.字符串模板法(Python标准库)

templ_string='Hey$name,thereisa$errorerror!'

Template(templ_string).substitute(

...name=name,error=hex(errno))

'HeyBob,thereisa0xbadc0ffeeerror!'

以上内容为大家介绍了python字符串格式化,希望对大家有所帮助,如果想要了解更多Python相关知识,请关注IT培训机构:千锋教育。

声明:本站稿件版权均属千锋教育所有,未经许可不得擅自转载。

猜你喜欢LIKE

python异步中selectors的使用

2023-11-14

python交集有什么作用?

2023-11-14

pythonfloat函数怎么用

2023-11-14

最新文章NEW

pythonreversed的反向迭代

2023-11-14

python匿名函数的命名规则

2023-11-14

python使用协程的缺点

2023-11-14

相关推荐HOT

更多>>

快速通道 更多>>

最新开班信息 更多>>

网友热搜 更多>>