私はいくつかの 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 を押すと、「中断されました」というメッセージを出力する代わりに、出力は次のようになります。
Please enter a Length : Traceback (most recent call last):
私はWindows 10にいて、cmdでコードを実行しています。何か案は?