Heim >Backend-Entwicklung >Python-Tutorial >Python bestimmt das Schaltjahr

Python bestimmt das Schaltjahr

巴扎黑
巴扎黑Original
2016-12-08 10:14:423682Durchsuche

#-*- coding:utf-8 -*-
try:
  year = int(raw_input('请输入年份(如2008): '))
except:
  print '请输入正确的年份'
  exit()
is_leap = False
if year % 100 == 0 and year % 400 == 0:
  is_leap = True
elif year % 100 != 0 and year % 4 == 0:
  is_leap = True
if is_leap:
  print '%d年是闰年!' % year
else:
  print '%d年不是闰年!' % year

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn