【Python-2.7】大小寫轉換函數

字母大小寫是編程過程當中常常遇到的問題,以下函數能夠靈活的進行大小寫轉換:python

title():把單詞首字母轉換爲大寫;編程

upper():把每一個字母轉換爲大寫;函數

lower():把每一個字母轉換爲小寫。code

示例以下:blog

#message變量
>>> message = 'HELLO world!'
>>> print(message)
HELLO world!

#首字母大寫
>>> print(message.title())
Hello World!

#所有大寫
>>> print(message.upper())
HELLO WORLD!

##所有小寫
>>> print(message.lower())
hello world!
相關文章
相關標籤/搜索