Python 可愛的大小寫

來源:互聯網
上載者:User
函數較簡單,看下面的例子:

代碼如下:


s = 'hEllo pYthon'
print s.upper()
print s.lower()
print s.capitalize()
print s.title()


輸出結果:
HELLO PYTHON
hello python
Hello python
Hello Python


判斷大小寫
Python提供了isupper(),islower(),istitle()方法用來判斷字串的大小寫。注意的是:
1. 沒有提供 iscapitalize()方法,下面我們會自己實現,至於為什麼Python沒有為我們實現,就不得而知了。
2. 如果對Null 字元串使用isupper(),islower(),istitle(),返回的結果都為False。

代碼如下:


print 'A'.isupper() #True
print 'A'.islower() #False
print 'Python Is So Good'.istitle() #True
#print 'Dont do that!'.iscapitalize() #錯誤,不存在iscapitalize()方法



實現iscapitalize
1. 如果我們只是簡單比較原字串與進行了capitallize()轉換的字串的話,如果我們傳入的原字串為空白字串的話,返回結果會為True,這不符合我們上面提到的第2點。
def iscapitalized(s):
return s == s.capitalize( )有人想到返回時加入條件,判斷len(s)>0,其實這樣是有問題的,因為當我們調用iscapitalize('123')時,返回的是True,不是我們預期的結果。
2. 因此,我們回憶起了之前的translate方法,去判斷字串是否包含任何英文字母。實現如下:

代碼如下:


import string
notrans = string.maketrans('', '')
def containsAny(str, strset):
return len(strset) != len(strset.translate(notrans, str))
def iscapitalized(s):
return s == s.capitalize( ) and containsAny(s, string.letters)
#return s == s.capitalize( ) and len(s) > 0 #如果s為數字組成的字串,這個方法將行不通調用一下試試:
print iscapitalized('123')
print iscapitalized('')
print iscapitalized('Evergreen is zcr1985')


輸出結果:
False
False
True
  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.