1. 程式人生 > >【Python-2.7】大小寫轉換函式

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

字母大小寫是程式設計過程中經常遇到的問題,如下函式可以靈活的進行大小寫轉換:

title():把單詞首字母轉換為大寫;

upper():把每個字母轉換為大寫;

lower():把每個字母轉換為小寫。

示例如下:

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 #message變數 >>> message = 'HELLO world!' >>> print(message) HELLO world! #首字母大寫 >>> print(message.title())
Hello World! #全部大寫 >>> print(message.upper()) HELLO WORLD! #全部小寫 >>> print(message.lower()) hello world!