python 中 and or not 三个关键字的使用
False<<==>> None [] {} () ‘’1.and > >x and y > >如果x的值为False(None [] {} () ‘’),返回x的值;否则返回y。2. or> > > x or y> > 如果 x 的值为True(非空类型),返回x的值;否