b="""nihao
hahah
xixi
"""
輸出:
'nihao\nhahah\nxixi\n'
「原字串」
big=r"this\
hhaha"
big
輸出:
'this\\\nhhaha'
還原為unicode字串
hello =u'hello\u0020world'
hello
輸出:
'hello world'
字串是不可以改變的
字串可以通過for迴圈遍歷
可以通過索引或者切片訪問字串:一部分,倒序,跳躍
字串可以轉化為另一種序列,比如列表
分隔為多行:splitlines()
搜尋字串出現的次數:count("ttt")
join將序列中的元素以指定的字元連線生成乙個新的字串
str="hello world"
#list函式
list_str = list(str)
list_str
#1.for迴圈遍歷
for c in str:
print(c)
#2.列表推導
result = [c for c in str]
result
#3.map函式
def fun(c):
return c
results=map(fun,str)
result2=list(results)
result2
輸出:
helout[21]:lo w
orld
['h', 'e', 'l', 'l', 'o', ' ', 'w', 'o', 'r', 'l', 'd']
python中的字串
方法1 用字串的join方法 a a b c d content content join a print content 方法2 用字串的替換佔位符替換 a a b c d content content s s s s tuple a print content 我們可以通過索引來提取想要獲取的...
python中的字串
字串連線操作 字串複製操作 字串索引操作,通過索引訪問指定位置的字元,索引從0開始 字串取片操作 完整格式 開始索引 結束索引 間隔值 結束索引 從開頭擷取到結束索引之前 開始索引 從開始索引擷取到字串的最後 開始索引 結束索引 從開始索引擷取到結束索引之前 擷取所有字串 開始索引 結束索引 間隔值...
Python中的字串
1 正向遞增序號 反向遞減序號 高階切片 字串 m n k 2 in len hex oct ord chr 3 lower upper split count replace 由零個或多個字元組成的有序字串行 1 字串是由一對單引號或一對雙引號表示 請輸入帶有符號的溫度值 或者 c 2 字串是字元...