python3 字串運算

2021-09-06 20:58:57 字數 1192 閱讀 9707

運算子含義

+字串連線

*重複輸出字串

通過索引獲取字串中字元

[ : ]

擷取字串中的一部分

in成員運算子 - 如果字串中包含給定的字元返回 true

not in

成員運算子 - 如果字串中不包含給定的字元返回 true

r/r原始字串 - 原始字串:所有的字串都是直接按照字面的意思來使用,沒有轉義特殊或不能列印的字元。 原始字串除在字串的第乙個引號前加上字母 r(可以大小寫)

print ('運算子 a+b\n',a+b)

print ('運算子 a*2\n',a*2)

print ('運算子 a[1]\n',a[1])

print ('運算子 a[1:3]\n',a[1:3])

if 'w' in a:

print ('運算子 w in a\n','true')

if 'n' not in a:

print ('運算子 n not in a\n','true')

print ("運算子 r''".format(r'\n'),'\n',r'\n')

print ("運算子 r''".format(r'\n'),'\n',r'\n')輸出以下結果:

運算子 a+b

運算子 a*2

運算子 a[1]

w

運算子 a[1:3]

ww

運算子 w in a

true

運算子 n not in a

true

運算子 r'\n' 

\n

運算子 r'\n' 

\n

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...

python3 字串操作

auther aaron fan name my tname is age is print name.capitalize 這段話的首字母大寫 print name.count a 統計這段字串中一共有多少個a print name.casefold print name.center 50,一共...