程序不知为什么报错无法运行
i = 3shu=0
while i:
shu=int(input('write shuzi:'))
i=i-1
if shu%400 ==0:
print('闰年')
else:
if shu%4 == 0 and shu%100 !=0 :
print('闰年')
else:
print('平年')
为什么无法运行呢? 缩进。
i = 3
shu=0
while i:
shu=int(input('write shuzi:'))
i=i-1
if shu%400 ==0:
print('闰年')
else:
if shu%4 == 0 and shu%100 !=0 :
print('闰年')
else:
print('平年')
i = 3
shu=0
while i:
shu=int(input('write shuzi:'))
i=i-1
if shu%400 ==0:
print('闰年')
else:
if shu%4 == 0 and shu%100 !=0 :
print('闰年')
else:
print('平年')
记得小甲鱼的课程和课后练习都说了,觉得缩进是Python的灵魂
页:
[1]