天天看點

if not aa 表示如果aa等于空就是true 相當于if not aa 相當于 if aa== 空

aa='tt'
print(not aa)
#表示 bb是空的 not 表示空
bb=''
print(not bb)