#20518: python 為什麼錯??? 一直說讀到EOF


youngyoung (06 蘇昱揚 306)

學校 : 臺北市私立延平高級中學
編號 : 98924
來源 : [180.217.13.133]
最後登入時間 :
2022-05-03 14:31:59
a022. 迴文 | From: [49.217.21.90] | 發表日期 : 2020-02-02 21:20

while True:
word = input()
isPalindrome = True
for i in range(0, len(word)):
if word[i] != word [-i-1]:
isPalindrome = False
break
print("yes") if isPalindrome == True else print("no")

 
ZeroJudge Forum