Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

จะใช้ Python Exception แบบกำหนดเองกับข้อความที่กำหนดเองได้อย่างไร


สำหรับโค้ดที่ระบุด้านบน วิธีแก้ไขมีดังนี้

ตัวอย่าง

class CustomValueError(ValueError):
def __init__(self, arg):
self.arg = arg
try:
a = int(input("Enter a number:"))
if not 1 < a < 10:
raise CustomValueError("Value must be within 1 and 10.")
except CustomValueError as e:
print("CustomValueError Exception!", e.arg)

ผลลัพธ์

Enter a number:45
CustomValueError Exception! Value must be within 1 and 10.
Process finished with exit code 0