目錄
- 一、前言
- 二、首字母大寫
- 三、字符串模板
- 四、高級(jí)模板
- 五、format用法
- 六、進(jìn)階用法
- 七、高階用法
一、前言
在程序中,有很多高效率的字符串處理方式,如果開發(fā)者能夠完全掌握這些高效的字符串處理,往往在開發(fā)者也能事半功倍。比如針對(duì)于字符串的處理,也是自然語(yǔ)言處理的基礎(chǔ)知識(shí)。
而python3中,處理字符串的庫(kù)為:string。本篇將詳細(xì)介紹各種字符串的高效處理方式。
二、首字母大寫
對(duì)于英文單詞組成的字符串來(lái)說(shuō),很多時(shí)候,我們需要對(duì)英文的首字母進(jìn)行大寫的變更。如果沒(méi)有了解其高效率的函數(shù),一般我們都通過(guò)循環(huán),判斷空格,取空格后一位的字母,判斷其在ASCII中的編碼后,取其大寫替換掉該位置的字符串。
但是,python3中有一個(gè)函數(shù)可以直接將首字母大寫,該函數(shù)為capwords()。下面,我們來(lái)通過(guò)一小段代碼實(shí)現(xiàn)首字母大寫的字符串變更。
import string
s = "When he shewed the riches of his glorious kingdom and the honour of his excellent majesty many days, even an hundred and fourscore days"
print("原始字符串")
print(s)
result = string.capwords(s)
print("首字母大寫字符串")
print(result)
運(yùn)行之后,我們會(huì)得到全大寫首字母字符串:
三、字符串模板
在string庫(kù)中,字符串模板函數(shù)為string.Template(),它可以用來(lái)拼接字符串。示例代碼如下:
import string
values = {
"name": "liyuanjing",
"age": "13",
}
s = """My name is : $name
I am $age years old
"""
template_str = string.Template(s)
print(template_str.substitute(values))
這里,我們使用字符串模板string.Template,然后通過(guò)函數(shù)substitute()進(jìn)行字符串替換。
不過(guò),這里有可能替換時(shí)values字典中沒(méi)有對(duì)應(yīng)的key怎么辦?string庫(kù)還給我們提供了一個(gè)函數(shù)safe_substitute()。
import string
values = {
"name": "liyuanjing",
"age": "13",
}
s = """My name is : $name
I am $age years old
$work
"""
template_str = string.Template(s)
print(template_str.safe_substitute(values))
因?yàn)樽值錄](méi)有對(duì)應(yīng)的值進(jìn)行替換,所以會(huì)保留原始的字符串?dāng)?shù)據(jù)。效果如下:
四、高級(jí)模板
上面的模板使用方法是string庫(kù)默認(rèn)提供的規(guī)則體系。其實(shí),我們還可以自定義模板的使用匹配方法,具體代碼如下:
import string
class MyTemplate(string.Template):
delimiter = '@'
idpattern = '[a-z]+_[0-9]+'
values = {
"name_1": "liyuanjing",
"age_1": "13",
}
s = """My name is : @name_1
I am @age_1 years old
@work_1
"""
template_str = MyTemplate(s)
print(template_str.safe_substitute(values))
這里,delimiter代表需要匹配的符號(hào),默認(rèn)符號(hào)"$",博主替換成了‘@'。其次,idpattern是values對(duì)應(yīng)的key名字規(guī)則,這里用正則表達(dá)式規(guī)定,比如是"字符串_數(shù)字"。運(yùn)行之后,效果如下:
五、format用法
基本用法
有過(guò)其他語(yǔ)言基礎(chǔ)的都應(yīng)該或多或少接觸過(guò)format字符串替換。這里,我們直接來(lái)看看其基本的使用方式:
print("My name is {}".format("liyuanjing"))#大括號(hào)匹配,按順序依次填充
print("My {1} is {0}".format("liyuanjing","name"))#數(shù)字匹配,按位置依次填充
print("My {name} is {tom}".format(tom="liyuanjing",name="name"))#關(guān)鍵字匹配,按關(guān)鍵字填充
運(yùn)行之后,效果如下:
六、進(jìn)階用法
format函數(shù)不僅可以匹配替換字符串,還可以通過(guò)它對(duì)其文本,或者取小數(shù)某幾位等等。下面,我們來(lái)看看這些用法如何實(shí)現(xiàn)
print('{} and {}'.format('tom', 'Jerry'))
print('{:10s}'.format('*')) # 默認(rèn)左對(duì)齊
print('{:>10s}'.format('*')) # 右對(duì)齊
print('{:^10s}'.format('*')) # 中間對(duì)齊
print('{:10s}'.format('*')) # 左對(duì)齊
print('{} is {:.2f}'.format(3.411592653, 3.1415926))#取2位小數(shù)
values = {
"name_1": "liyuanjing",
"age_1": "13",
}
s = """My name is : {name_1}
I am {age_1} years old
"""
print(s.format(**values))
注釋已經(jīng)非常詳細(xì),這里不在贅述。效果如下:
七、高階用法
format除了能做上面這些事情之外,還可以轉(zhuǎn)換進(jìn)制以及ASCII碼符號(hào)等等。下面,我們來(lái)實(shí)現(xiàn)這些高階用法。
print('{:b}'.format(8))#:b轉(zhuǎn)換為二進(jìn)制
print('{:c}'.format(200))#:c轉(zhuǎn)換Unicode字符串
print('{:d}'.format(111))#:d轉(zhuǎn)換十進(jìn)制
print('{:o}'.format(8))#:o轉(zhuǎn)換八進(jìn)制
print('{:x}'.format(32))#:x轉(zhuǎn)換十六進(jìn)制
print('{:e}'.format(32))#:e轉(zhuǎn)換冪符號(hào)
print('{:%}'.format(0.32))#:%轉(zhuǎn)換百分值
print('{:n}'.format(32000000000))#:n就是數(shù)值
print('{:g}'.format(32000000000))#:n也是數(shù)值,不過(guò)特別大時(shí)轉(zhuǎn)換為冪科學(xué)計(jì)數(shù)
運(yùn)行之后,效果如下:
到此這篇關(guān)于Python基礎(chǔ)之文本常量與字符串模板的文章就介紹到這了,更多相關(guān)Python文本常量與字符串模板內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
您可能感興趣的文章:- Python編程之字符串模板(Template)用法實(shí)例分析
- Python的string模塊中的Template類字符串模板用法
- 詳解Python垃圾回收機(jī)制和常量池的驗(yàn)證
- python常量折疊基礎(chǔ)知識(shí)點(diǎn)講解
- python接口自動(dòng)化如何封裝獲取常量的類
- Python將字符串常量轉(zhuǎn)化為變量方法總結(jié)
- 在Python中定義一個(gè)常量的方法
- python中的常量和變量代碼詳解
- 深入理解Python中的內(nèi)置常量
- 深入理解Python變量與常量
- Python中實(shí)現(xiàn)常量(Const)功能