try:
while True:
y=int(input())
if y%4==0 and y%100!=0 or y%400==0:
print('閏年')
else:
print('平年')
except:
pass
try:
while True:
y=int(input())
if y%4==0 and y%100!=0 or y%400==0:
print('閏年')
else:
print('平年')
except:
pass
下面也可以寫成
except EOFError:
pass
try:
y=int(input())
if y%4==0 and y%100!=0 or y%400==0:
print('閏年')
else:
print('平年')
except:
pass
下面也可以寫成
except EOFError:
pass
若沒有寫while True:
則出現錯誤(只輸入一行)
若沒有寫try: except:
則出現錯誤(EOFError: EOF when reading a line)