python的Template使用指南

2022-10-04 23:57:16 字數 1796 閱讀 8420

template無疑是乙個程式設計客棧好東西,可以將字串的格式固定下程式設計客棧來,重複利用。同時template也可以讓開發人員可以分別考慮字串的格式和其內容了,無形中減輕了開發人員的壓力。

template屬於string中的乙個類,所以要使用的話可以用以下方式呼叫

from string import template

template有個特殊標示符$,它具有以下的規則:

它的主要實現方式為$***,其中***是滿足python命名規則的字串,即不能以數字開頭,不能為關鍵字等

如果$***需要和其他字串接觸時,可www.cppcns.com用{}將***包裹起來(以前似乎使用'()',我的一本參考書上是這樣寫的,但是現在的版本應該只能使用'{}')。例如,aaa$aaa

template中有兩個重要的方法:substitute和safe_substitute.

這兩個方法都可以通過獲取引數返回字串

>>s=template(there $a and $b)

>>print s.subtitute(a='apple',b='banana')

there apple and banana

>>print s.safe_substitute(a='apple',b='banbana')

there apple and banbana

還可以通過獲取字典直接傳遞資料,像這樣

>>s=template(there $a and $b)

>>d=

>>print s.substitute(d)

there apple and banbana

它們之間的差別在於對於引數缺少時的處理方式。

template的實現方式是首先通過template初始化乙個字串。這些字串中包含了乙個個key。通過呼叫substitute或safe_subsititute,將key值與方法中傳遞過來的引數對應上,從而實現在指定的位置匯入字串。這個方式的乙個好處是不用像print 『%s'之類的方式,各個引數的順序必須固定,只要key是正確的,值就能正確插入。通過這種方式,在插入很多資料的時候就可以鬆口氣了。可是即使有這樣偷懶的方法,依舊不能保證不出錯,如果key少輸入了乙個怎麼辦呢?

substitute是乙個嚴肅的方法,如果有key沒有輸入,那就一定會報錯。雖然會很難看,但是可以發現問題。

safe_substitute則不會報錯,而是將$***直接輸入到結果字串中,如

there apple and $b

這樣的好處是程式總是對的,不用被乙個個錯誤搞得焦頭爛額。

template可以被繼承,它的子類可以進行一些『個性化'操作...

通過修改delimiter欄位可以將$字元改變為其他字元,如「#」,不過新的標示符需要符合正規表示式的規範。

通過修改idpattern可以修改key的命名規則,比如說規定第乙個字元開頭必須是a,這對規範命名倒是很有好處。當然,這也是通過正則表示實現的。

from string import template

class mytemplate(template):

delimiter = "#"

idpattern = "[a][_a-z0-9]*"

def test():

s='#aa is not #ab'

t=mytemplate(s)

d=print tuvkdzba.substitute(d)

if __name__=='__main__':

test()

本文標題: python的template使用指南

本文位址: /jiaoben/python/113456.html

python之Template的使用

template 字串模板,用於替換字串中的變數。模板字串支援基於 的替換,並遵循以下規則 此類的方法 示例 替換字串中佔位符 from string import template def test example template template who like what d templat...

Python基於template實現字串替換

下面介紹使用python字串替換的方法 1.字串替換 將需要替換的內容使用格式化符替代,後續補上替換內容 template hello s your website is s 大cc print template 也可使用format函式完成 template 程式設計客棧 hello your w...

模板 Template 模式

模板 template 模式 模板模式是類的行為模式。1.定義 定義乙個操作中演算法的骨架 或稱為頂級邏輯 將一些步驟 或稱為基本方法 的執行延遲到其子類中.2.模板模式與繼承 模板方法估計恰當地使用繼承。此模式可以用來改寫一些擁有相同功能的相關的類,將可復用的一般性行為 移到基類裡面,而把特殊化的...