全桥整流 发表于 2021-8-9 17:12:09

程序不知为什么报错无法运行

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('平年')
      
为什么无法运行呢?

逃兵 发表于 2021-8-9 17:20:32

缩进。

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('平年')

叼辣条闯世界 发表于 2021-8-9 18:53:59

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('平年')

StudyPython_1 发表于 2021-8-10 11:00:23

记得小甲鱼的课程和课后练习都说了,觉得缩进是Python的灵魂
页: [1]
查看完整版本: 程序不知为什么报错无法运行