python 中字串大小寫轉換

2021-09-05 07:54:12 字數 746 閱讀 1559

python中字串的大小寫轉換和判斷字串大小寫的函式小結:

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

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

print

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

just to test it  

print

'just to test it'.lower() #所有字母都轉換成小寫

just to test it  

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

print

'just to test it'.capitalize() #字串的首字母轉換成大寫, 其餘轉換成小寫

just to test it  

print

'just to test it'.title() #字串中所有單詞的首字母轉換成大寫, 其餘轉換成小寫

just to test it  

二、判斷字串大小寫函式:  

print

'just to test it'.isupper()  

true

print

'just to test it'.islower()  

false

print

'just to test it'.istitle()  

false

Python 字串大小寫轉換

filename test.py author by www.runoob.com str www.runoob.com print str.upper 把所有字元中的小寫字母轉換成大寫字母 print str.lower 把所有字元中的大寫字母轉換成小寫字母 print str.capitaliz...

Python 字串大小寫轉換

字串大小寫轉換 1 upper 字串中所有字元轉成大寫。2 lower 字串中所有字元轉成小寫。3 swapcase 字串中所有字元,大寫轉成小寫,小寫轉成大寫。4 capitalize 第乙個字元轉成大寫,其餘字元轉成小寫。5 title 每個單詞第乙個字元轉成大寫,其餘字元轉成小寫。1 字串的大...

大小寫轉換 字串

time limit 1000ms memory limit 65536kb problem description 把乙個字串裡所有的大寫字母換成小寫字母,小寫字母換成大寫字母。其他字元保持不變。input 輸入為一行字串,其中不含空格。長度不超過80個字元。output 輸出轉換好的字串。exa...