从Python中的字符串中删除特定字符我试图使用Python从字符串中删除特定字符。这是我现在使用的代码。不幸的是,它似乎对字符串没有任何作用。for char in line:
if char in " ?.!/;:":
line.replace(char,'')我该怎么做呢?
3 回答
慕哥9229398
TA贡献1877条经验 获得超6个赞
>>> line = "abc#@!?efg12;:?">>> ''.join( c for c in line if c not in '?:!/;' )'abc#@efg12'
添加回答
举报
0/150
提交
取消