python小筆記 字串

2021-08-21 20:59:22 字數 574 閱讀 5988

(單引號或者雙引號括起來的任意文字)

建立

str = 「sunck good」

運算

字串連線

str1 = 「sunck」

str2 = 「good」

str3 = str1 + str2

print(「str3 = 」, str3) 返回str3 = sunck good

輸出重複的字串

str1 = 「good」

str2 = str1 * 3

print(「str2 = 」, str2) 返回str2= goodgoodgood

訪問字串中的某個字元(通過索引下標查詢字元,索引從0開始(空格也算乙個字元))

str = 「sunck good」

print(str[1])返回u

擷取字串中的一部分

str1 = 「sunck good」

str2 = str1[3:8] #str2 = str1[3:-2]也可以

print(「str2 = 」,str2) 返回ck go

python小筆記 字串2

轉義字元 將一些字元轉換成有特殊含義的字元 eg print sunck n good 返回sunck n good 返回單引號 eg print sunck is good 返回sunck is good eg print sunck is good 返回sunck is good 返回雙引號 e...

python小筆記 字串3

切割 split str num 以str為分隔符擷取字串,指定num,則僅僅擷取num個字串 eg str sunck is a good man print str.split 返回 sunck is a good man print str.split 3 返回 sunck is a good...

Python學習筆記 字串小練習

一 編寫乙個程式,接受一行序列作為輸入,並在將句子中的所有字元大寫後列印行。假設向程式提供以下輸入 hello world practice makes perfect 則輸出為 hello world practice makes perfect str1 input 請輸入乙個字串 print ...