天天看點

Python天天美味(11) - 可愛的大小寫

和其他語言一樣,Python為string對象提供了轉換大小寫的方法:upper() 和 lower()。還不止這些,Python還為我們提供了首字母大寫,其餘小寫的capitalize()方法,以及所有單詞首字母大寫,其餘小寫的title()方法。函數較簡單,看下面的例子:

Python天天美味(11) - 可愛的大小寫

s = 'hEllo pYthon'

Python天天美味(11) - 可愛的大小寫

print s.upper()

Python天天美味(11) - 可愛的大小寫

print s.lower()

Python天天美味(11) - 可愛的大小寫

print s.capitalize()

Python天天美味(11) - 可愛的大小寫

print s.title()

輸出結果:

HELLO PYTHON

hello python

Hello python

Hello Python

Python提供了isupper(),islower(),istitle()方法用來判斷字元串的大小寫。注意的是:

1. 沒有提供 iscapitalize()方法,下面我們會自己實作,至于為什麼Python沒有為我們實作,就不得而知了。

2. 如果對空字元串使用isupper(),islower(),istitle(),傳回的結果都為False。

Python天天美味(11) - 可愛的大小寫

print 'A'.isupper() #True

Python天天美味(11) - 可愛的大小寫

print 'A'.islower() #False

Python天天美味(11) - 可愛的大小寫

print 'Python Is So Good'.istitle() #True

Python天天美味(11) - 可愛的大小寫

#print 'Dont do that!'.iscapitalize() #錯誤,不存在iscapitalize()方法

1. 如果我們隻是簡單比較原字元串與進行了capitallize()轉換的字元串的話,如果我們傳入的原字元串為空字元串的話,傳回結果會為True,這不符合我們上面提到的第2點。

Python天天美味(11) - 可愛的大小寫

def iscapitalized(s):

Python天天美味(11) - 可愛的大小寫

    return s == s.capitalize( )

有人想到傳回時加入條件,判斷len(s)>0,其實這樣是有問題的,因為當我們調用iscapitalize('123')時,傳回的是True,不是我們預期的結果。

2. 是以,我們回憶起了之前的translate方法,去判斷字元串是否包含任何英文字母。實作如下:

Python天天美味(11) - 可愛的大小寫

import string

Python天天美味(11) - 可愛的大小寫

notrans = string.maketrans('', '')

Python天天美味(11) - 可愛的大小寫

def containsAny(str, strset):

Python天天美味(11) - 可愛的大小寫

    return len(strset) != len(strset.translate(notrans, str))

Python天天美味(11) - 可愛的大小寫
Python天天美味(11) - 可愛的大小寫

    return s == s.capitalize( ) and containsAny(s, string.letters)

Python天天美味(11) - 可愛的大小寫

    #return s == s.capitalize( ) and len(s) > 0 #如果s為數字組成的字元串,這個方法将行不通

調用一下試試:

Python天天美味(11) - 可愛的大小寫

print iscapitalized('123')

Python天天美味(11) - 可愛的大小寫

print iscapitalized('')

Python天天美味(11) - 可愛的大小寫

print iscapitalized('Evergreen is zcr1985')

False

True

...

本文轉自CoderZh部落格園部落格,原文連結:http://www.cnblogs.com/coderzh/archive/2008/05/04/1181340.html,如需轉載請自行聯系原作者