python學習之道2 字串

2021-10-23 11:54:04 字數 345 閱讀 6180

單引號之間不可以包含撇號,雙引號之間可以包含單引號。

「str1」+ 「str2」表示字串的拼接;

「\tstr」中的「\t」這個是製表符,相當於tab在word中的作用;

「\n」代表換行符;

python中使用在字串後面跟".rstrip()"表示刪除字元中的空格;

在pyhton2的直譯器中,print可以不加括號,但是在python3中print必須加上括號。

pyhton2的直譯器在處理整數之間的除法時,會將小鼠部分刪除,只包含證書部分。

####python同shell一樣,也是使用#注釋;

python輸入」import this「有驚喜。

python學習筆記2 字串

總結 字串是不可變變數,不能通過下標修改其值 字串的方法都不會改變字串原來的值,而是新生成乙個字串 一 3種寫法 單引號,雙引號,三引號 二 下標和切片 下標 字串裡每個字元所在的位置,也叫索引。strname n 表示strname這個字串的下標為n對應的字元的值。切片 取字串乙個下標區間的值。s...

python學習筆記2 字串

1 python3中的字串可以使用引號 或 開建立。a hello world print type a 結果 2 python沒有c語言等其他語言中 char 型別,哪怕只有乙個字元,python也按照字串處理。python訪問子字串,可以使用方括號擷取字串。a 0 h a 1 5 hell 當在...

Python初學2 字串

字串 單引號和雙引號都合法,並滿足互相插入 let me let me let me let me let s me let s me let s me let s me 轉義字元 單引號 let me let me let me let me n 換行 hello world hello worl...