永遠也記不住系列
print str[0:3] #擷取第一位到第三位的字元
print str[:] #擷取字串的全部字元
print str[6:] #擷取第七個字元到結尾
print str[:-3] #擷取從頭開始到倒數第三個字元之前
print str[2] #擷取第三個字元
print str[-1] #擷取倒數第乙個字元
print str[::-1] #創造乙個與原字串順序相反的字串
print str[-3:-1] #擷取倒數第三位與倒數第一位之前的字元
print str[-3:] #擷取倒數第三位到結尾
print str[:-5:-3] #逆序擷取
str(),tuple(),list()
這三個灰常灰常灰常常用
s = "***xx"
print(list(s))
print(tuple(s))
l = ['a','b','c','d','e']
t = ('a','b','c','d','e')
print("".join(l))
print("".join(t))
#####結果如下
['x', 'x', 'x', 'x', 'x']
('x', 'x', 'x', 'x', 'x')
abcde
abcde
1.strip() 從乙個字串中刪除開頭或結尾處的字串行str=" hello world "
str.strip()
#hello world
對於開頭和結尾:
str.lstrip('h')
#ello world
str.rstrip('d')
#hello worl
str1 = str.replace(' ','')
#helloworld
2.split()把乙個字串分割成字串陣列str.split(' ')
#['hello', 'world']
注意:上面兩種函式並不改變str的值,所以需要儲存函式值。 python字串 元組 列表 字典互轉
coding utf 8 1 字典 dict 字典轉為字串,返回 print type str dict str dict 字典可以轉為元組,返回 age name class print tuple dict 字典可以轉為元組,返回 7,zara first print tuple dict.va...
python字串 元組 列表 字典互轉
coding utf 8 1 字典 dict 字典轉為字串,返回 print type str dict str dict 字典可以轉為元組,返回 age name class print tuple dict 字典可以轉為元組,返回 7,zara first print tuple dict.va...
python字串 元組 列表 字典互轉
coding utf 8 1 字典 dict 字典轉為字串,返回 print type str dict str dict 字典可以轉為元組,返回 age name class print tuple dict 字典可以轉為元組,返回 7,zara first print tuple dict.va...