1. 程式人生 > >python3 判斷大小寫

python3 判斷大小寫

字符 pytho 51cto com 字母 字符串 title per pyhton

轉自http://wangwei007.blog.51cto.com/68019/1134323

# 一、pyhton字符串的大小寫轉換, 常用的有以下幾種方法:

# 1、對字符串中所有字符(僅對字母有效)的大小寫轉換, 有兩個方法:

print(‘just to test it‘.upper()) # 所有字母都轉換成大寫

print(‘JUST TO TEST IT‘.lower()) # 所有字母都轉換成小寫


# 2、對字符串中的字符(僅對字母有效)部分大小寫轉換:

print(‘JUST TO TEST IT‘.capitalize()) # 字符串的首字母轉換成大寫, 其余轉換成小寫

print(‘JUST TO TEST IT‘.title()) # 字符串中所有單詞的首字母轉換成大寫, 其余轉換成小寫

# 二、判斷字符串大小寫函數:

print(‘JUST TO TEST IT‘.isupper())
print(‘JUST TO TEST IT‘.islower())
print(‘JUST TO TEST IT‘.istitle())

python3 判斷大小寫