我正在尝试替换我阅读的文档中的所有四个字母单词,并用四颗星代替它。代码可以识别四个字母的单词,但它无法替换它们。我做错了什么?
这是我到目前为止的代码。
# wordfreq.py
import string
def compareItems((w1, c1),(w2,c2)):
if c1 >c2:
return -1
elif c1 == c2:
return cmp(w1, w2)
else :
return 1
def main() :
print """This program analyzes word frequency in a file and
prints a report on the n most frequent words. \n """
# get the sequence of words from the file
fname = raw_input("File to analyze: ")
text = open(fname, 'r').read()
text = str.lower(text)
for ch in '!"#$%&()*+,-./:;<=>?@[[\\]^_`{|}`' :
text = string.replace(text, ch, ' ')
words = string.split(text)
# construct a dictionary of word counts
counts = {}
for w in words :
if len(w) == 4:
w.replace("w", "\****", )
print words
if __name__ == '__main__': main()
答案 0 :(得分:1)
str.replace()
返回更新的文本,您尝试替换字符串 "w"
,而不是变量{{1}中的值}}。你真的不需要在这里使用w
;你有一个列表,你只需要用不同的字符串替换长度为4的所有元素。
使用列表推导替换列表中的值:
str.replace()