也可以help用来检查Bool控制台中的值:
帮助(真)help(True)Help on bool object:class bool(int)
| bool(x) -> bool |
| Returns True when the argument x is true, False otherwise.
| The builtins True and False are the only two instances of the class bool.
| The class bool is a subclass of the class int, and cannot be subclassed.
|
| Method resolution order:
| bool | int | object |
帮助(假)help(False)Help on bool object:class bool(int)
| bool(x) -> bool |
| Returns True when the argument x is true, False otherwise.
| The builtins True and False are the only two instances of the class bool.
| The class bool is a subclass of the class int, and cannot be subclassed.
|
| Method resolution order:
| bool | int | object