Python3 抛出异常 Python3 单个异常 Python3 访问属性 Python3 抛出异常 #!/usr/bin/python3 def functionName( level ): if level <1: raise Exception(level) # The code below to this would not be executed # if we raise the exception return level try: l = functionName(-10) print ("level = ",l) except Exception as e: print ("error in level argument",e.args[0]) Python3 单个异常 Python3 访问属性