嗨,我正在开发一个净化器程序。我之前发布了类似的代码,它们都可以工作。这次我尝试了不同的方法。
这是我想要的一个例子
输入 = 这是废话 输出 = 这是 xxxx
这是我到目前为止的代码
def main():
message = []
userInput = str(input("Enter the sentence: "))
for i in userInput:
if((i=='c' or i =='C') and (i =='r' or i=='R')):
i = 'x' * len(i)
message.append(i)
print(' '.join(message))
如果我在 if 语句中没有“and”,上面的代码就可以工作,但是只要我添加“and”,这就是我得到的输出
Enter the sentence: CR
C R
我希望输出为 xx。我怎样才能做到这一点?感谢您的帮助