How to use bool function in python
This article mainly explains "how to use the bool function in python". The content in the article is simple and clear, and it is easy to learn and understand. Please follow the editor's train of thought to study and learn "how to use the bool function in python".
Examples of specific usage are as follows:
Python 3.7.1 (default, Dec 14 2018, 13:28:58)
[Clang 4.0.1 (tags/RELEASE_401/final)]:: Anaconda, Inc. On darwin
Type "help", "copyright", "credits" or "license" for more information.
> > bool ()
False
> bool (0)
False
> > bool (1)
True
> bool (2)
True
> issubclass (bool,int)
True
> bool ('')
True
> > bool (")
False
> > bool (")
True
> bool ('')
False
> bool ('A')
True
Thank you for reading, the above is the content of "how to use the bool function in python". After the study of this article, I believe you have a deeper understanding of how to use the bool function in python, and the specific use needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!