Python學習筆記

2021-09-11 07:34:21 字數 560 閱讀 5123

字串,整型、浮點型、元組、字典、列表。。。

對字串可以進行切割

s.split(「要切割的元素」)

也可以對字串進行切片

s[m:n:k] [起始位置:結束位置+1:步長(預設為1 )]

也可以對字串進行替換

s.replace(old, new[, max])

python replace() 方法把字串中的 old(舊字串) 替換成 new(新字串),如果指定第三個引數max,則替換不超過 max 次

例如:str = 「this is string example…wow!!! this is really string」;

print str.replace(「is」, 「was」);

print str.replace(「is」, 「was」, 3);

控制台就會輸出:

thwas was string example…wow!!! thwas was really string

thwas was string example…wow!!! thwas is really string

python教學筆記 python學習筆記(一)

1.eval 函式 eval是單詞evaluate的縮寫,就是 求.的值的意思。eval 函式的作用是把str轉換成list,dict,tuple.li 1 1,2,3 print eval li 1 di 1 print eval di 1 tu 1 2,4,6 print eval tu 1 執...

python學習筆記

coding utf 8 coding utf 8 應該像八股文一樣在每個指令碼的頭部宣告,這是個忠告 為了解決中文相容問題,同時你應該選擇支援 unicode 編碼的編輯器環境,保證在執行指令碼中的每個漢字都是使用 utf 8 編碼過的。cdays 5 exercise 3.py 求0 100之間...

Python 學習筆記

python 學習筆記 def run print running.def execute method method execute run result running.condition false test yes,is true if condition else no,is false ...