Python 字符串--分片-count()-find()-join()-split()-replace()

Python字符串html 當要訪問字符串的其中一個字符的時候,只須要用索引列表或者元組的方法來索引字符串便可:python str1 = 'Hello,i\'m here' print(str1[4]) o字符串和元組同樣,一旦定下來就不能直接對他們進行修改了, str1 = 'Hello,i\'m here' str1 = str1[:10] + '快來' + str1[9:] print(
相關文章
相關標籤/搜索