python3 字符串python
字符串是 Python 中最經常使用的數據類型。咱們能夠使用引號('或")來建立字符串。ide
建立字符串很簡單,只要爲變量分配一個值便可。spa
例如
code
s1 = 'Hello World'
s2 = "Python"
字符串是不可變對象。orm
Python 3的字符串使用Unicode,直接支持多語言。對象
轉義字符字符串
字符串運算符it
、io
例如class
a = "Hello"b = "Python"
print("a + b 輸出結果:", a + b)
print("a * 2 輸出結果:", a * 2)
print("a[1] 輸出結果:", a[1])
print("a[1:4] 輸出結果:", a[1:4])
if( "H" in a) :
print("H 在變量 a 中")else :
print("H 不在變量 a 中")
if( "M" not in a) :
print("M 不在變量 a 中")else :
print("M 在變量 a 中")
print (r'\n')print (R'\n')
運行結果爲:
a + b 輸出結果: HelloPython
a * 2 輸出結果: HelloHello
a[1] 輸出結果: e
a[1:4] 輸出結果: ell
H 在變量 a 中
M 不在變量 a 中
\n
\n
python 三引號
三引號容許一個字符串跨多行,字符串中能夠包含換行符、製表符以及其餘特殊字符。
例如
s3 = r'''Hello,
Word!'''
運行以下
Hello,Word!