python筆記之字符串

列表,元組,字符串的相互轉換:索引

將字符串轉換爲序列和元組:字符串

>>> s="hello"方法

>>> list(s)
['h', 'e', 'l', 'l', 'o']
>>> tuple(s)
('h', 'e', 'l', 'l', 'o')
>>> list(tuple(s))
['h', 'e', 'l', 'l', 'o']
>>> tuple(list(s))
('h', 'e', 'l', 'l', 'o')join

將序列和元組轉換爲字符串:字符

>>> "".join(list(s))
'hello'
>>> "".join(tuple(s))
'hello'
>>> str(s)
'hello'
>>> str(list(s))
"['h', 'e', 'l', 'l', 'o']"
>>> str(tuple(s))
"('h', 'e', 'l', 'l', 'o')"

 

 

字符串方法:

(1)find:返回子字符串第一次出現最左端索引的位置

>>> s="hello"
>>> s.find("l")
2

(2)join

(3)lower:返回小寫字母

相關文章
相關標籤/搜索