我正在做一些 Python 教程,以尝试尽可能多地学习该语言,但我在异常处理方面遇到了一些问题。我在 Windows 10 中使用 cmd 运行代码Python 3.4.3
。具体来说,KeyboardInterrupt
当按下 Ctrl + C 时,该块根本不打印任何内容。虽然这不一定很重要,但我正在考虑可能需要执行其他操作的时候,KeyboardInterrupt
例如写入文件。
def process_input(input_value):
try:
float_value = float(input_value)
except ValueError:
raise ValueError("\n'%s' is not a number." % input_value)
if float_value <= 0:
raise ValueError("\nMeasurements must be positive values.")
return float_value
def get_dims(*names):
dims = []
for n in names:
raw_input = input("Please enter a %s : " % n)
processed_input = process_input(raw_input)
dims.append(processed_input)
return dims
def main():
print("\nThis program will request a length, width, and height and\n will" \
"return the total volume for a box.\n")
success = False
try:
length, width, height = get_dims('Length', 'Width', 'Height')
success = True
except ValueError as e:
print(e)
except KeyboardInterrupt:
print("\nInterrupted.")
if success:
volume = length * width * height
print("\nThe volume of the box is %.2f" % volume)
if __name__ == '__main__':
main()
在第一次用户输入期间按 Ctrl + C 时,不是打印出消息“Interrupted”,而是输出如下所示:
Please enter a Length : Traceback (most recent call last):
我在 Windows 10 中,在 cmd 中运行代码。有任何想法吗?