Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不知道这部分代码有什么问题
if value.find("\\") > -1: newstr = int(value.find("\\")) print newstr print value print value[newstr:7]
正在newstr正确打印以及value显示value[newstr:7]空白。
newstr
value
value[newstr:7]
有任何想法吗?
value[newstr:7]会给你从一个位置newstr到另一个位置7。
7
也许你的意思是value[newstr:newstr + 7]?
value[newstr:newstr + 7]