2013-12-13 137 views
-1

感謝這個網站上的答案我現在知道你可以通過字符串[: - 1]刪除字符串的最後一個字符,但這真的很有幫助,但我需要爲了能夠消除第一個,並據我瞭解這種技術,這是不可能的。那麼還有其他方法可以在不替換特定字母的情況下刪除部分字符串嗎?我如何刪除字符串的第一個字符[python]

回答

5

你是什麼意思「這是不可能的」? :)

這是完全可能的Explain Python's slice notation

>>> mystr = 'abcde' 
>>> mystr[1:] # Remove the first 
'bcde' 
>>> mystr[1:-1] # Remove the first and the last 
'bcd' 
>>> mystr[2:-2] # Remove the first two and the last two 
'c' 
>>> 
1

string[1:]

您可能需要閱讀一些文檔。 :)

相關問題