马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
本帖最后由 四君子 于 2017-12-30 10:09 编辑
进度有点慢,才005讲,这是刚在手机上写的,app的缘故不支持中文,英文学不好,其目的是:输入一个年份判断平年还是闰年,查询后根据输入1继续查询,输入其他退出,代码如下,请前辈帮忙看下是否能优化,谢谢!#判断输入1回车继续查询,输入其它回车退出
print('------Seach Year-----')
print('Please a year:',end='')
#i=0 已去除
#if i==0:已去除
#i=i+1已去除
year=int(input())
if (((year/4)==(year//4))and((year/100)!=(year//100)))or((year/400)==(year//400)): #判断平闰年
print('This a Run year')
else:
print('This a Ping year')
#while i!=1: 已修正
while 1:
print('Please enter 1 to continue or other to exit:',end='')
n=int(input())
if n==1: #判断是否继续执行
print('Please a year:',end='')
year=int(input())
if (((year/4)==(year//4))and((year/100)!=(year//100)))or((year/400)==(year//400)):
print('This a Run year')
else:
print('This a Ping year')
elif n!=1:
print('Goodbye')
print(exit())
|