YOMEDIA
NONE

Hãy viết chương trình đưa ra một RuntimeError exception.

Theo dõi Vi phạm
ATNETWORK

Trả lời (1)

  • Code đơn giản:

    raise RuntimeError('something wrong')

    Code phức tạp:

    class RuntimeError(Exception):

        def __init__(self, mismatch):

           Exception.__init__(self, mismatch)

    try:

        print ("And now, the Vocational Guidance Counsellor Sketch.")

        raise RuntimeError("Does not have proper hat")

        print ("This print statement will not be reached.")

    except RuntimeError as problem:

        print ("Vocation problem: {0}".format(problem))

      bởi hoàng duy 30/11/2021
    Like (0) Báo cáo sai phạm

Nếu bạn hỏi, bạn chỉ thu về một câu trả lời.
Nhưng khi bạn suy nghĩ trả lời, bạn sẽ thu về gấp bội!

Lưu ý: Các trường hợp cố tình spam câu trả lời hoặc bị báo xấu trên 5 lần sẽ bị khóa tài khoản

Gửi câu trả lời Hủy
 
NONE

Các câu hỏi mới

AANETWORK
 

 

YOMEDIA
ATNETWORK
ON