python开发之str.format()用法实例分析
程序员文章站
2022-04-29 15:55:43
...
本文实例分析了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','hongtenzone@foxmail.com')) #可以改变占位符的位置 print('{1},I\'m {0},my E-mail is {2}'.format('Hongten','Hello','hongtenzone@foxmail.com')) 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 math print('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 win32 Type "copyright", "credits" or "license()" for more information. >>> ================================ RESTART ================================ >>> I'm Hongten,Welcome to my space! ######################################## Hello,I'm Hongten,my E-mail is hongtenzone@foxmail.com Hello,I'm Hongten,my E-mail is hongtenzone@foxmail.com ######################################## 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 ==> 4098 Sjoerd ==> 4127 Dcab ==> 7678 Jack: 4098; Sjoerd: 4127; Dcab: 8637678 >>>
希望本文所述对大家Python程序设计有所帮助。
声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。
相关文章
相关视频
专题推荐
-
独孤九贱-php全栈开发教程
全栈 170W+
主讲:Peter-Zhu 轻松幽默、简短易学,非常适合PHP学习入门
-
玉女心经-web前端开发教程
入门 80W+
主讲:灭绝师太 由浅入深、明快简洁,非常适合前端学习入门
-
天龙八部-实战开发教程
实战 120W+
主讲:西门大官人 思路清晰、严谨规范,适合有一定web编程基础学习
上一篇: MySQL数据库连接不稳定
下一篇: CSS属性之float学习心得
推荐阅读
-
Python常用模块之requests模块用法分析
-
Python3.5内置模块之os模块、sys模块、shutil模块用法实例分析
-
Python3.5内置模块之random模块用法实例分析
-
Android控件之ScrollView用法实例分析
-
Android控件之ImageView用法实例分析
-
Android控件之ScrollView用法实例分析
-
Android控件之Spinner用法实例分析
-
Android控件之CheckBox、RadioButton用法实例分析
-
Android控件之AnalogClock与DigitalClock用法实例分析
-
Android控件之GridView用法实例分析
网友评论
文明上网理性发言,请遵守 新闻评论服务协议
我要评论