摘要:本文將告訴您Python中的字串是什麼,並向您簡要介紹有關該概念的所有知識。
本文將介紹以下內容:
因此,讓我們開始吧。
什麼是Python中的字串?
我們許多熟悉C,C 等程式語言的人都會得到諸如「字串是字元的集合或字元陣列」的答案。
在Python中也是如此,我們說的是String資料類型的相同定義。字串是序列字元的數組,並寫在單引號,雙引號或三引號內。另外,Python沒有字元資料類型,因此當我們編寫“ a”時,它將被視為長度為1的字串。
繼續本文,了解什麼是Python中的String?
如何建立一個字串?
s = 'Hello' print(s) s1 = "Hello" print(s1) s2 = ''' Hello How is the whether today? ''' print(s2)
#輸出:
你好
你好
你好
今天如何?
當我們在字串中同時使用單引號和雙引號以及要編寫多行句子時,通常會使用三引號。
筆記
我們需要注意的是,在使用單引號時,字串中不應包含單引號,因為如果發生這種情況,Python將假定該行在第二個引號本身出現的情況下結束,並且不會獲得所需的輸出。相同的符號後應加上雙引號和三引號。
繼續本文,了解什麼是Python中的String?
如何從字串存取字元?
假設我們要存取字串中的一個字符,比方說最後一個字符,我們需要知道它在字串中的位置。
這是一個字串以及指派的位置。因此,如果要從字串存取'n',則必須轉到第5位。
編號或索引從0到小於字串長度的1開始。
這是一個python程序,可以使我們更加清楚。
str = 'Antarctica is really cold.' print('str = ', str) #first character print('str[0] = ', str[0]) #last character print('str[-1] = ', str[-1]) #slicing 2nd to 5th character print('str[1:5] = ', str[1:5]) #slicing 6th to 2nd last character print('str[5:-2] = ', str[5:-2])
輸出:
str =南極真的很冷。
str [0] = A
str [-1] =。
str [1:5] = ntar
str [5:-2] = ctica確實是col
現在,如果在索引中從左到右遵循遞增順序模式,則從右到左遵循遞減順序模式,即從-1,-2,-3等。因此,如果要存取最後一個字符,可以透過兩種方式進行。
str = 'Antarctica is really cold.' a = len(str) print('length of str ', a) #last character with the help of length of the string print('str[a] ', str[a-1]) #last character with the help of indexing print('str[-1] ',str[-1])
輸出:
str 26
str [a]的長度。
str [-1]。
字串本質上是不可變的,這意味著一旦聲明了字串,就不能更改其中的任何字元。
s = "Hello Batman" print(s) s[2] = 'P' print(s)
輸出:
你好蝙蝠俠
回溯(最近一次通話最近):
檔案“ C:/Users/prac.py” ,第3行,位於
s [2] =' P'TypeError
:'str'物件不支援專案分配
流程以退出程式碼1完成
##但是,您可以使用del運算子刪除整個字串。s = "Hello Batman" print(s) del s print(s)
輸出:
您好蝙蝠俠 回溯(最近一次通話最近):
檔案“ C:/Users/prac.py” ,
列印中的第4行
NameError:未定義名稱“ s”
s = "Hello Batman" print(s) s = "Hello Spiderman" print(s)
輸出:
你好蝙蝠俠 你好蜘蛛人
格式化字串:
格式化字串表示可以在任意位置動態分配字串。 可以使用format()方法來格式化Python中的字串,該方法是用於格式化字串的功能非常強大的工具。 String中的Format方法包含大括號{}作為佔位符,可以根據位置或關鍵字保存參數以指定順序。
String1 = "{} {} {}".format('Hello', 'to', 'Batman') print("Default order: ") print(String1) # Positional Formatting String1 = "{1} {0} {2}".format('Hello', 'to', 'Batman') print("nPositional order: ") print(String1) # Keyword Formatting String1 = "{c} {b} {a}".format(a='Hello', b='to', c='Spiderman') print("nString in order of Keywords: ") print(String1) # Formatting of Integers String1 = "{0:b}".format(20) print("binary representation of 20 is ") print(String1) # Formatting of Floats String1 = "{0:e}".format(188.996) print("nExponent representation of 188.996 is ") print(String1) # Rounding off Integers String1 = "{0:.2f}".format(1 / 6) print("none-sixth is : ") print(String1) # String alignment String1 = "|{:<10}|{:^10}|{:>10}|".format('Hello', 'to', 'Tyra') print("nLeft, centre and right alignment with Formatting: ") print(String1)
輸出:
預設順序: 蝙蝠俠向您問好
致Hello Batman
蜘蛛人到Hello
1.889960e 02
0.17
|您好| 到| 泰拉|
相關免費學習推薦:python影片教學
以上是了解Python中的字串是什麼嗎?的詳細內容。更多資訊請關注PHP中文網其他相關文章!