python開發之str.format()用法執行個體分析

來源:互聯網
上載者:User
本文執行個體分析了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程式設計有所協助。

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.