遇到问题.replace()

时间:2016-05-16 20:49:54

标签: python string list replace

我有问题替换"?"零。 ogtL只是我从excel文件中获取的数字列表。从那个excel只是更多的数字。我只是遇到问题,为什么它不工作,我也想要一些帮助将新字符串放回到ogtL。

ArrayList

1 个答案:

答案 0 :(得分:3)

我认为问题是你没有将你的替换输出保存到变量。

for eachWord in ogtL: #ogtL is a List
    newString=""
    for eachCharacter in eachWord:
        newString+=eachCharacter
        newString = newString.replace("?","0")
    print(newString)

你也不需要像这样迭代每个角色,我想你可以这样做:

for eachWord in ogtL: #ogtL is a List
    newString=eachWord.replace("?","0")        
    print(newString)