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