python 字串基本操作

2021-08-21 16:55:25 字數 617 閱讀 9924

"""

字串的基本操作

"""import operator

s = ' hello, world! '

# 去掉空格/換行符

s.strip()

# 從左側切掉

s.lstrip(' hello, ')

# 從右測切掉

a = s.rstrip('world! ')

# 字條串拼接

s2 = 'to me '

a = s + s2

# 查詢第乙個出現該字元的位置

a = s.index('o')

a = s.find('o')

# 查詢該字元出現的次數

a = s.count('o')

# 字串的比較, 該為py3的用法

a = operator.eq(s, s)

# 字母轉大寫

a = s.upper()

# 字母轉小寫

a = a.lower()

# 翻轉字串

a = s[::-1]

# 切片

a = s.split(',')

# 右側切片

a = s.rsplit()

python 字串基本操作

一 引號 單引號 雙引號 三引號內都是字串,三引號的支援換行 字串內本身需要輸出引號,需要用反斜槓進行轉義,也可以直接在前面加個 r 例如 print r asd asd asd qwe 輸出 asd asd asd qwe 二.下標 索引 從0開始,用 0 框住 name yexueqing pr...

Python字串的基本操作

str字串有哪些操作 mystr.find str,start,end 如果存在,返回下標,不存在返回 1 mystr.index str,start,end 如果存在,返回下標,不存在報異常 mystr.count str,start,end 返回str在start到end之間出現的次數 myst...

python字串的基本操作

python3中字串是由unicode碼點組成的不可變序列 以下是一些基本的操作 format 拼接方式 s1 is a format wangcai dog print s1 s3 is a format name2 dog name1 wangcai print s3 wangcai is a ...