如何使用re.sub替换特定的迭代?

时间:2019-07-15 21:33:49

标签: python-3.7

我正在为一个项目制作madlibs python程序,但无法替换输入中的特定单词。

我想更改单个迭代,而不是所有迭代。 放轻松,我是新手

# Run a loop to replace the words

print("Replacing Words...")

for loopCount in range(replacedNumber):
    currentReplace = replaceList[loopCount] 
    print(re.finditer(r'<.*?>',storyContent))
    print("Replacing", currentReplace)
    filteredReplaced = re.sub(r'<.*?>',currentReplace, storyContent, loopCount)

注意:print()行仅用于调试

Here is a link to all of the code

Console Output

0 个答案:

没有答案