#32268: answer dude and bro


Waynewang (unknown)

學校 : 不指定學校
編號 : 197617
來源 : [1.163.208.18]
最後登入時間 :
2022-10-02 19:09:24
a022. 迴文 | From: [1.163.224.217] | 發表日期 : 2022-09-25 18:16

while True: try: a = list(input()) length = len(a) # 取得輸入字串長度 output = 'yes' # 預設 output 為 yes for i in range(length//2): # 使用 for 迴圈,取值到輸入字串的中間 ( 使用除法取整數 ) if a[i] != a[length-1-i]: # 如果從前方數來的項目不等於後方數來的項目 output = 'no' # 設定 output 為 no print(output) except: break

 
ZeroJudge Forum