pycharm格式报错:Remove redundant parentheses
原写法:if (a in list1):
修改为:if a in list1:
====python运算符
1、算术运算符: + - * / % **(幂运算) //(取整除, 向下取整)
2、比较运算符: == != <> > < >= <=
3、赋值运算符: = += -= *= /= %= **= //=
4、位运算符 : & | ^ ~ << >>
(&): 一假为假
(|): 一真为真
(^): 相同为假 不同为真
(~): 取反
5、逻辑运算符: and or not
6、成员运算符: in not in, 返回bool
包括:字符串、列表、元组
在指定序列中, 找到返回true, 否则返回false
7、身份运算符: is is not
(is): 如果x is y, 引用自同一对象, 返回true
8、is 与 ==区别: is 比较的是地址值 是否是同一对象, ==比较的是字面值是否相等