判斷字串型別
s=
str(
input
("請輸入:"))
if s.isalnum():
#字母或數字
print
(f"是字母或數字"
)if s.isalpha():
#字母print
(f"是字母"
)if s.isupper():
#大寫字母
print
(f"是大寫字母"
)elif s.islower():
#小寫字母
print
(f"是小寫字母"
)elif s.isdigit():
#數字print
(f"是數字"
)elif s.isspace():
#空格print
(f"是空格"
)elif s.istitle():
#標題print
(f"是標題"
)elif s.isdecimal():
#十進位制字元
print
(f"是十進位制字元"
)
轉換字串型別
s=
str(
input
("請輸入:"))
print
(s.upper())
#轉換為大寫字母
print
(s.lower())
#轉換為小寫字母
print
(s.title())
#轉換為標題(每個單詞首字母大寫)
print
(s.swapcase())
#大小寫翻轉
print
(s.capitalize())
#字串的首字母大寫
python判斷字串
python判斷字串 s為字串 s.isalnum 所有字元都是數字或者字母 s.isalpha 所有字元都是字母 s.isdigit 所有字元都是數字 s.islower 所有字元都是小寫 s.isupper 所有字元都是大寫 s.istitle 所有單詞都是首字母大寫,像標題 s.isspace...
判斷字串 python判斷字串是否包含字母
第一種方法 使用正規表示式判斷字串是否包含字母 coding utf 8 import re def check str my re re.compile r a za z re.s res re.findall my re,str if len res print u 含有英文本元 else pr...
Python字串練習
python mystr hello world and dgjfkhgj title 返回乙個首字母大寫的字串 print mystr.title capitalize 返回第乙個首字母大寫的字串 print mystr.capitalize upper 返回全部大寫 print mystr.up...