溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

有哪些Python格式化字符串的方法

發(fā)布時間:2021-11-01 10:34:46 來源:億速云 閱讀:217 作者:iii 欄目:編程語言

本篇內(nèi)容主要講解“有哪些Python格式化字符串的方法”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“有哪些Python格式化字符串的方法”吧!

1. %-formatting格式化字符串

最早的格式化是用%(百分號), 它這么用:

In : name = 'World' 
In : id = '10' 
In : 'Hello %s,id=%s' %(name,id) 
Out: 'Hello World,id=10'

這里用的%s表示格式化成字符串,另外常用的是%d(十進(jìn)制整數(shù))、%f(浮點(diǎn)數(shù))。

另外也支持使用字典的形式:

In : 'Hello[%(name)s],id=%(name)s' % {'id': 10, 'name': 'World'} 
Hello[World],id=10

2. str.format()格式化字符串

常規(guī)用法

In : name = 'World' 
In : 'Hello {}' %(name) 
Out: 'Hello World'

通過位置訪問:

In : '{2}, {1}, {0}'.format('a', 'b', 'c') 
Out: 'c, b, a'

通過關(guān)鍵字訪問:

In : 'Hello {name}'.format(name='testerzhang') 
Out: 'Hello testerzhang'

3. f-string格式化字符串

Python3.6 版本開始出現(xiàn)了此新的格式化字符串,性能又優(yōu)于前面兩種方式。

In : name = "testerzhang" 
In : print(f'Hello {name}.') 
In : print(f'Hello {name.upper()}.') 
Out: Hello testerzhang. 
Out: Hello TESTERZHANG. 
In : d = {'id': 1, 'name': 'testerzhang'} 
In : print(f'User[{d["id"]}]: {d["name"]}') 
Out: User[1]: testerzhang

注意:如果低于Python3.6,可以通過pip install future-fstrings即可,在相應(yīng)的py 腳本文件里不需要加import這個庫,但是需要頭部加上# coding: future_fstrings。

到此,相信大家對“有哪些Python格式化字符串的方法”有了更深的了解,不妨來實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI