python速学教程(入门到精通)
python怎么学习?python怎么入门?python在哪学?python怎么学才快?不用担心,这里为大家提供了python速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
英文说明:convert a value to a boolean, using the standard truth testing procedure. if x is false or omitted, this returns false; otherwise it returns true. bool is also a class, which is a subclass of int. class bool cannot be subclassed further. its only instances are false and true.
New in version 2.2.1.
Changed in version 2.3: If no argument is given, this function returns False.
中文说明:将x转换为Boolean类型,如果x缺省,返回False,bool也为int的子类;
参数x:任意对象或缺省;大家注意到:这里使用了[x],说明x参数是可有可无的,如果不给任何参数则会返回False。
版本:在python 2.2.1中引入的新函数,在python2.3以后如果不传参数则返回False。
注意:该函数在python3中也可正常使用
>>> bool(0) False >>> bool("abc") True >>> bool("") False >>> bool([]) False >>> bool() False >>> issubclass(bool, int) #bool是一个subclass int True
Python免费学习笔记(深入):立即学习
在学习笔记中,你将探索 Python 的核心概念和高级技巧!
已抢4968个
抢已抢68196个
抢已抢11938个
抢已抢42350个
抢已抢167420个
抢已抢79371个
抢