会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
colorfulstone
博客园
首页
新随笔
新文章
联系
订阅
管理
2019年5月30日
if not用法
摘要: python中判断变量是否为None三种写法: 1、if x is None 2、if not x 3、if not x is None 理解成 if not (x is None) 结果是和1相反的 python中None、false、""、0、[]、{}、()时,采用not 方法判断是相等的 n
阅读全文
posted @ 2019-05-30 09:32 colorfulworld
阅读(3940)
评论(0)
推荐(0)
编辑