1、字串拼接
str_1 = "abcd"
str_2 = "efgh"
str_3 = str_1 + str_2
print(str_3)
abcdefgh
2、字串大小寫
1)大寫
str_1 = "abcd"
print(str_1.upper())
abcd
2)小寫
str_1 = 「abcd」
print(str_1.lower())
abcd
3)所有大小寫轉換
str_1 = "abcd"
print(str_1.swapcase())
abcd
4)首字母 大寫
str_1 = "ab cd"
print(str_1.title())
ab cd
5) 第乙個字母大寫
str_1 = "ab cd"
print(str_1.capitalize())
ab cd
3、is***判斷
1)
>>> print('34'.isdigit()) # 判斷是不是 數字
true
>>> print('abc'.isalpha()) # 判斷是不是 字母
true
>>> print('a34'.isalnum()) # 判斷是不是 字母 或數字
true
待續·····
檔案參考:
python中字串的操作方法大全
python 字串處理大全.
Python字串運算
下表例項變數a值為字串 hello b變數值為 python 操作符描述例項 字串連線 a b 輸出結果 hellopython 重複輸出字串 a 2 輸出結果 hellohello 通過索引獲取字串中字元 a 1 輸出結果e 擷取字串中的一部分 a 1 4 輸出結果ell in成員運算子 如果字串...
字串運算
字串操作 二維字元陣列的建立 字串其實是乙個一維字元陣列,在對字串進行操作時,其實就是對一維字元陣列進行操作 s1 go home 直接賦值 s1 go home 用單引號進行賦值 三種方法 sa i love my teacher,i love truths more profoundly sa ...
字串函式大全
函式名 stpcpy 功 能 拷貝乙個字串到另乙個 用 法 char stpcpy char destin,char source 程式例 include include int main void 函式名 strcat 功 能 字串拼接函式 用 法 char strcat char destin,...