https://blog.csdn.net/u014769180/article/details/83896266
成员运算符in
身份运算符is
Python 中检查字符串是否包含列表中的元素
any(substring in my_str for substring in my_list)
any(i in [0,1] for i in [0])
https://blog.csdn.net/fengqianlang/article/details/129353270
is 与 == 区别
https://www.cnblogs.com/linagcheng/p/15532083.html
Python 中 (&,|)和(and,or)之间的区别
https://blog.csdn.net/weixin_40041218/article/details/80868521
Python中的“1” 和 “True”相同吗?
https://blog.csdn.net/Ocean_waver/article/details/107072794