def is_reverse(word1, word2):
if len(word1) != len(word2):
return False
i = 0
j = len(word2)
while j > 0:
if word1[i] != word2[j]:
return False
i = i+1
j = j-1
return True
is_reverse('pots', 'stop')
我已經定義了上面的函數來檢查兩個給定的字是否相互匹配。Python中的縮進風格:反轉字功能
但是當我運行它時,它不斷提醒我縮進錯誤。
如何衡量在python中的縮進級別?
這與縮進無關,但我認爲你想要做的是'j = len(word2) - '1'而不是'j = len(word2)'和'while j> = 0:'而不是'while'> 0:' – Silveris