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]