我是 Python 新手,我正试图让我的字符串将 'abc' 更改为 'def' 简而言之,我不断得到,"unindented does not match any other indentation level."
因此,这意味着我的函数有什么问题?
def changes(x):
if 'a' in sent:
x=sent.replace('a','d')
if 'b' in x:
y=x.replace('b','e')
if 'c' in y:
z=y.replace('c','f')
print(z)
sent=print(input('Enter a sentence:'))
changes(x)