python3 字串擷取

2022-05-12 18:21:21 字數 600 閱讀 3021

str = 『0123456789』

print str[0:3] #

擷取第一位到第三位的字元

print str[:] #

擷取字串的全部字元

print str[6:] #

擷取第七個字元到結尾

print str[:-3] #

擷取從頭開始到倒數第三個字元之前

print str[2] #

擷取第三個字元

print str[-1] #

擷取倒數第乙個字元

print str[::-1] #

創造乙個與原字串順序相反的字串

print str[-3:-1] #

擷取倒數第三位與倒數第一位之前的字元

print str[-3:] #

擷取倒數第三位到結尾

print str[:-5:-3] #

逆序擷取,具體啥意思沒搞明白?

結果就是

0123456789

0123456978

96

python3 字串擷取

str 0123456789 print str 0 3 擷取第一位到第三位的字元 print str 擷取字串的全部字元 print str 6 擷取第七個字元到結尾 print str 3 擷取從頭開始到倒數第三個字元之前 print str 2 擷取第三個字元 print str 1 擷取倒數...

python3字串相等 python3 字串

1 拼接 1 多個字串進行連線 連線符,必須左右資料型別一致 例 print hello world 結果 helloworld 例 print 5 world 結果 typeerror unsupported operand type s for int and str 2 多個相同字串連線 字串...

python3 字串基礎

字串可以使用一對單引號或一對雙引號指定起止位置,兩種方式指定的字串完全等價。如 hello 和 world 可以用三引號 或 指定多行字串,其中可自由使用單 雙引號而不需轉義。如 what s your name?i asked.字串過長不方便寫在一行時,可以使用反斜槓跨行而不增加換行符。如 abc...