真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

python字符串格式化-創(chuàng)新互聯(lián)

python3中字符串格式化有兩種方法:%和format

創(chuàng)新互聯(lián)建站專注于蒲城企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站開發(fā),商城網(wǎng)站制作。蒲城網(wǎng)站建設(shè)公司,為蒲城等地區(qū)提供建站服務(wù)。全流程定制制作,專業(yè)設(shè)計(jì),全程項(xiàng)目跟蹤,創(chuàng)新互聯(lián)建站專業(yè)和態(tài)度為您提供的服務(wù)

一、%

  在%操作符左側(cè)放置一個需要進(jìn)行格式化的字符串,這個字符串帶有一個或多個嵌入的轉(zhuǎn)換目標(biāo),都以%開頭,如%s,%d,%f。

    在%操作符右側(cè)放置一個對象,這些對象將會插入到左側(cè)想讓python進(jìn)行格式化字符串的一個轉(zhuǎn)換目標(biāo)的位置上。


案例:

>>> 'this is a %s' % 'test'
'this is a test'
>>>
>>> 'shuangji %d.this is a %s' % (666,'test')        #右側(cè)有多個值時用括號括起來
'shuangji 666.this is a test'
>>>
>>> '%s--%s--%s' % (666,231.51241,[1,2,3])           #python中任何類型都可以轉(zhuǎn)換為字符串。實(shí)例中左側(cè)都是%s,會將右側(cè)中的對象轉(zhuǎn)換為字符串(重新創(chuàng)建)。
'666--231.51241--[1, 2, 3]'
>>>

%左側(cè)通用結(jié)構(gòu)是   %[(name)][flags][width寬度][.precision精度]typecode,-左對齊,+正負(fù)號,0補(bǔ)零


>>> x=1234
>>> test='%d...%-6d...%06d'%(x,x,x)        #-號左對齊。0不足位數(shù)補(bǔ)零
>>> test
'1234...1234  ...001234'
>>> x=12.126435787654123                    #浮點(diǎn)數(shù)的表示方法
>>> '%e|%f|%g'%(x,x,x)
'1.212644e+01|12.126436|12.1264'
>>> '%-6.2f|%06.2f|%+06.1f'%(x,x,x)            #6.2表示總有6位數(shù),2位小數(shù)
'12.13 |012.13|+012.1'
>>> '%-6.2f|%06.2f|%.*f'%(x,x,4,x)            #此處*表示精度,將4給*后,x是替代值
'12.13 |012.13|12.1264'
>>>
>>> '%(a)s %(b)s %(c)s %(d)s' % ({'a':'this','b':'is','c':'a','d':'test'})        #基于字典的格式化,是使用鍵值的。
'this is a test'

二、format方法


>>> 'this {} a {}'.format('is','test')            #默認(rèn)1對1,多1不可,缺1不可
'this is a test'
>>> 'this {1} a {0}'.format('is','test')            #{}通過位置找出替換目標(biāo)及插入的參數(shù)
'this test a is'
>>> 'this {x} a {y}'.format(x='is',y='test')            #{}通過關(guān)鍵字找出替換目標(biāo)及插入的參數(shù)
'this is a test'
>>> 'this {x} a {0}'.format('is',x='test')            #兩者都有
'this test a is'
>>>
>>> 'this {1[spam]} test of {0.platform}'.format(sys,{'spam':'is'})    #0表示第一個位置,.platform 表示位置或關(guān)鍵字所引用的對象屬性:sys.platform。
'this is test of linux'
>>>

format格式結(jié)構(gòu){fieldname!conversionflag:formatspec},fieldname表示參數(shù)的一個數(shù)字位置或關(guān)鍵字,conversionflag可以是r,s,a對應(yīng)repr/str/ascii內(nèi)置函數(shù)的一次調(diào)用,formatspec指定了如何表示該值:字段寬度、對齊方式、補(bǔ)零、小數(shù)精度等。冒號后的formatspec組成形式有:[[fill]align對齊方式][sign][#][0][width寬度][.precision精度][typecode]


>>> '{0:>10}={1:<10}'.format('test',12.62424)        #字段寬度為10個,>右對齊,<左對齊
'      test=12.62424  '
>>> import sys
>>> '{0.platform:>10}={1[item]:<10}'.format(sys,dict(item='laptop'))     #使用位置.屬性的方法替換值   
'     linux=laptop    '
>>>
>>> '{0:.2f}'.format(1/3.0)
'0.33'
>>> '{0:.{1}f}'.format(1/3.0,4)    #動態(tài)的從參數(shù)列表獲取精度位數(shù)
'0.3333'
>>> '{%.*f}'%(6,1/3.0)            #動態(tài)的使用%從參數(shù)列表獲取精度位數(shù)
'{0.333333}'
>>>

高級用法

        >>> msg='this {a} a  for python,The No.{c}'.format(**{'a':'is','b':'a','c':1})            #使用字典形式來格式化,必須加入兩個 *號和大括號

        >>> print(msg)

        this is a a for python,The No.1

        >>>

        >>> msg='this {:s} a {:s} for python,The No.{:d}'.format('is','test',1)                

        >>> print(msg)

        this is a test for python,The No.1

        >>>

        >>> msg='this {:s} a {:s} for python,The No.{:d}'.format(*['is','test',1])            #列表形式加入一個*號,*表示將列表中的元素,遍歷出來,類似上面一個列子

        >>> print(msg)

        this is a test for python,The No.1

        >>>

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點(diǎn)與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。


本文標(biāo)題:python字符串格式化-創(chuàng)新互聯(lián)
網(wǎng)址分享:http://weahome.cn/article/jscpg.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部