>> bool([])False>>> bool(())False>>> bool({})False>>> bool(None)..._python中什么元素为甲">
赞
踩
0,空字符串,空列表、空字典、空元组、None, False
示例:
- >>> bool(0)
- False
- >>> bool("")
- False
- >>> bool([])
- False
- >>> bool(())
- False
- >>> bool({})
- False
- >>> bool(None)
- False
- >>>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。