感谢这个网站上的答案我现在知道你可以用字符串[: - 1]删除字符串的最后一个字符,这真的很有帮助,但是我需要能够删除第一个以及就我而言理解这种技术是不可能的。那么有没有其他方法来删除部分字符串而不替换特定字母?
答案 0 :(得分: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 :(得分:1)
string[1:]
您可能需要阅读一些文档。 :)