我正在为一个项目制作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()行仅用于调试