print(__debug__)
输出结果如下:-O
,代码如下:
C:\Users\Administrator>python -O Python 3.10.1 (tags/v3.10.1:2cd268a, Dec 6 2021, 19:10:37) [MSC v.1929 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>>__debug__ False用户不可以设置 __debug__ 变量的值,下面的示例将 __debug__ 变量设成 False,结果产生错误。
>>>__debug__ = False File "<stdin>", line 1 SyntaxError: cannot assign to __debug____debug__ 变量也可以用来调试程序,下面的语法与 assert 语句的功能相同。
If __debug__: If not (<测试码>): raise AssertionError [, 参数]下面的示例检测函数的参数类型是否是字符串。如果函数的参数类型不是字符串,就输出一个 AssertionError 异常。
import types def checkType(arg): if __debug__: if not (type(arg) == str): raise AssertionError('参数类型不是字符串') checkType(10)输出异常信息如下:
本文链接:http://task.lmcjl.com/news/13091.html