str
是 Python 中的一個內置類型,表示字符串。在 Python 中,字符串是由字符組成的序列,可以用單引號、雙引號或三引號表示。
以下是 str
類型的一些常見用法:
使用單引號、雙引號或三引號創建字符串:
s1 = 'hello'
s2 = "world"
s3 = '''This is a multiline
string.'''
使用 +
運算符將兩個字符串拼接在一起:
result = s1 + ' ' + s2
print(result) # 輸出:hello world
使用 *
運算符重復字符串:
repeated_str = s1 * 3
print(repeated_str) # 輸出:hellohellohello
使用索引訪問字符串中的特定字符,或者使用切片獲取子字符串:
first_char = s1[0] # 輸出:h
sub_str = s1[1:4] # 輸出:ell
使用 len()
函數獲取字符串的長度:
length = len(s1)
print(length) # 輸出:5
Python 中的字符串提供了許多有用的方法,如 upper()
, lower()
, replace()
, split()
等:
upper_str = s1.upper() # 輸出:HELLO
lower_str = s2.lower() # 輸出:world
replaced_str = s1.replace('l', 'L') # 輸出:heLLo
split_str = s1.split('e') # 輸出:['h', 'llo']
這只是 str
類型的一些基本用法,更多信息可以參考 Python 官方文檔。