str是Python中的一種常見數(shù)據(jù)類型,代表“字符串”(string)類型,即由若干個(gè)字符組成的文本序列。在Python中,字符串是不可變的(immutable),也就是說,一旦創(chuàng)建后就不能再被修改了,只能通過創(chuàng)建新的字符串來操作。接下來,我們將從多個(gè)方面對(duì)str的特點(diǎn)進(jìn)行詳細(xì)闡述。
一、str的創(chuàng)建
字符串在Python中可以通過單引號(hào)、雙引號(hào)、三個(gè)單引號(hào)或三個(gè)雙引號(hào)來創(chuàng)建。其中,單雙引號(hào)創(chuàng)建的字符串沒有區(qū)別,三個(gè)引號(hào)用來創(chuàng)建多行的字符串,其內(nèi)部可以包含換行符。
str1 = 'hello world!' str2 = "hello world!" str3 = '''hello world!'''
除了使用直接賦值創(chuàng)建字符串之外,還可以使用str()函數(shù)將其他類型的值轉(zhuǎn)為字符串類型,例如:
num1 = 123 num2 = 4.56 str_num1 = str(num1) # '123' str_num2 = str(num2) # '4.56'
在Python 3.x中,字符串默認(rèn)使用Unicode編碼,因此可以直接使用中文字符,例如:
chinese_str = '你好,世界!'
二、str的操作
三、str的格式化
字符串格式化是將一個(gè)或多個(gè)值插入到字符串中的過程,通常會(huì)使用占位符(也稱為格式化指示符)來指定應(yīng)該被替換的值的類型和格式。在Python中,字符串格式化可以通過以下方式進(jìn)行:
四、str的方法
除了前面提到的字符串操作之外,str還定義了許多常用的方法,例如:
1. upper()和lower()
返回字符串的大寫或小寫形式:
str1 = 'hello world' new_str1 = str1.upper() # 'HELLO WORLD' new_str2 = str1.lower() # 'hello world'
2. strip()和lstrip()和rstrip()
返回去除字符串兩端空格后的結(jié)果,strip()表示去除兩端空格,lstrip()表示去除左側(cè)空格,rstrip()表示去除右側(cè)空格。
str1 = ' hello world ' new_str1 = str1.strip() # 'hello world' new_str2 = str1.lstrip() # 'hello world ' new_str3 = str1.rstrip() # ' hello world'
3. split()
返回將字符串按照指定的分隔符(默認(rèn)為空格)拆分后的結(jié)果:
str1 = 'hello,world' lst1 = str1.split(',') # ['hello', 'world']
4. join()
返回使用指定字符串將一個(gè)列表中的元素拼接起來的結(jié)果:
lst1 = ['hello', 'world'] str1 = ','.join(lst1) # 'hello,world'
5. count()
返回字符串中指定子串出現(xiàn)的次數(shù):
str1 = 'hello world' count1 = str1.count('l') # 3 count2 = str1.count('world') # 1
還有許多其他有用的方法,例如replace()、find()、index()等,可以查看Python官方文檔(https://docs.python.org/3/library/stdtypes.html#string-methods)進(jìn)行了解。