第1题
第一空填 True
第二空填 break
第三空填 except Exception as e:pass
while True:
x=input()
try:
x=int(x)
if x>0: break
except Exception as e:pass
print(f"{x:3d}")
源代码(注意源代码的缩进)
第2题
第一空填 except Exception as e
try:
x=int(input())
print("OK")
except Exception as e:print(e)
源代码(注意源代码的缩进)