Python的运算符(保姆级教学)

and左边为真输出右边(不管真假,不管是啥,直接输出)print(1andNone)print(1and\"hi\")print(\"1\"and0)#and左边为假直接输出假(左边)print...