我对测试赋值为False,True的值有些困惑
要检查True值,我们可以简单地说
a = True if (a):
假的怎么样?
a=False if (a) <--- or should it be if (a==False), or if not a ?
python
python ×1