字串是封裝在單引號或雙引號內的字元序列。
例如:
「你好世界」
‘蘋果’
「那是什麼?」
這些是 Python 中字串的樣子。
1.單行字串- 要寫單行字串,我們使用單引號('這是字串')或雙引號(「這也是字串」)。
Example- print('Hello world!) print("What's up?") output- Hello world! What's up?
Example- print("""We have a pet. He is a dog.""") output- We have a pet. He is a dog.
由於字串是有序序列,因此我們可以對其進行索引。
索引允許我們抓取字串的單一字元並存取它。
字串中的每個字元都有一個索引位置(索引),從 0 開始到 n-1 結束(其中 n= 字元數)。
你好
0 1 2 3 4
Example- my_string= “Hello” print(my_string[3]) output - l
我們也可以在Python中使用反向索引。
你好
0 -4 -3 -2 -1
Example- My_string = “Hello” print(my_string[-4]) Output - e
切片允許我們抓取字串的一部分(多個字元),也稱為字串切片。
切片語法- [start:stop:step]
其中 start 是我們必須抓取字元的數字索引值。
Stop 是我們會跳到的數值,但不包含 and
步長是我們從開始到停止的跳躍大小。
注意 - 要取得字串的所有元素,我們使用 ::
Example- My_string = “Hello” print(my_string[2:4]) output- llo
字串切片將始終包含起始字母到所提到的索引 (n-1) 之前的字母。
IMMUTABILITY- 字串是不可變的,這表示它們無法更改。
Example- name = “Sam” name[0] = ‘P’
上面的程式碼會報錯,因為我們無法更改字串。
CONCATENATION- 我們可以使用串聯來連接(合併)兩個字串。
Example- x = “Hello” x + “ World!” Output- Hello World!
您可以使用 * 來乘以字母數。
Example- letter = ‘x’ letter * 10 Output- zzzzzzzzzz
字串是不可變的字元序列,您可以對其執行索引和切片,因為它是有序序列。
以上是Python 字串:探索字串操作方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!