天天看点

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

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