国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > Python > 正文

python開發之str.format()用法實例分析

2019-11-25 16:55:23
字體:
來源:轉載
供稿:網友

本文實例分析了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 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 ================================>>> I'm Hongten,Welcome to my space!########################################Hello,I'm Hongten,my E-mail is hongtenzone@foxmail.comHello,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    ==>    4098Sjoerd   ==>    4127Dcab    ==>    7678Jack: 4098; Sjoerd: 4127; Dcab: 8637678>>> 

希望本文所述對大家Python程序設計有所幫助。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 浮梁县| 易门县| 舒兰市| 大渡口区| 湖北省| 上栗县| 成武县| 徐闻县| 吐鲁番市| 济宁市| 凉山| 安岳县| 塔城市| 涞水县| 苏州市| 西乌珠穆沁旗| 咸宁市| 昆山市| 诸城市| 霞浦县| 佛教| 将乐县| 新龙县| 江孜县| 民勤县| 务川| 莱西市| 孟连| 都昌县| 河东区| 石林| 富民县| 察隅县| 连平县| 永城市| 清苑县| 磴口县| 凌海市| 和林格尔县| 元氏县| 苏州市|