• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

python开发之str.format()用法实例分析

python 搞代码 4年前 (2022-01-09) 63次浏览 已收录 0个评论

本文实例分析了python开发之str.format()用法。分享给大家供大家参考,具体如下:

格式化一个字符串的输出结果,我们在很多地方都可以看到,如:c/c++中都有见过

下面看看python中的字符串格式函数str.format():

#使用str.format()函数#使用'{}'占位符print('I\'m {},{}'.format('Hongten','Welcome to my space!'))print('#' * 40)#也可以使用'{0}','{1}'形式的占位符print('{0},I\'m {1},my E-mail is {2}'.format('Hello','Hongten','[email protected]'))#可以改变占位符的位置print('{1},I\'m {0},my E-mail is {2}'.format('Hongten','Hello','[email protected]'))print('#' * 40)#使用'{name}'形式的占位符print('Hi,{name},{message}'.format(name = 'Tom',message = 'How old are you?'))print('#' * 40)#混合使用'{0}','{name}'形式print('{0},I\'m {1},{message}'.format('Hello','Hongten',message = 'This is a test message!'))print('#' * 40)#下面进行格式控制import mathprint('The value of PI is approximately {}.'.format(math.pi))print('The value of PI is approximately {!r}.'.format(math.pi))print('The value of PI is approximately {0:.3f}.'.format(math.pi))table = {'Sjoerd': 4127, 'Jack': 4098, 'Dcab': 7678}for name, phone in table.items():  print('{0:10} ==> {1:10d}'.format(name, phone))table = {'Sjoerd': 4127, 'Jack': 4098, 'Dcab': 8637678}print('Jack: {0[Jack]:d}; Sjoerd: {0[Sjoerd]:d}; ''Dcab: {0[Dcab]:d}'.format(table))

运行效果:

Python 3.3.2 (v3.3.2:d047928ae3f6, May 16 2013, 00:03:43) [MSC v.1600 32 bit (Intel)] on win32Type "copyright", "credits" or "license()" for more information.>>> ================================ RESTART =<span>本文来源gaodai#ma#com搞*!代#%^码$网*</span>===============================>>> I'm Hongten,Welcome to my space!########################################Hello,I'm Hongten,my E-mail is [email protected],I'm Hongten,my E-mail is [email protected]########################################Hi,Tom,How old are you?########################################Hello,I'm Hongten,This is a test message!########################################The value of PI is approximately 3.141592653589793.The value of PI is approximately 3.141592653589793.The value of PI is approximately 3.142.Jack    ==>    4098Sjoerd   ==>    4127Dcab    ==>    7678Jack: 4098; Sjoerd: 4127; Dcab: 8637678>>> 

希望本文所述对大家Python程序设计有所帮助。


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:python开发之str.format()用法实例分析
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址