哥,姐帮我看看这是怎么回事怎么弄那个=c都不行啊 如式(not a<b and b not =c or x+y<=3)
正确写法如下,希望对你有帮助。
print(not a < b and b != c or x+y<=3)
你可以写b!=c也可以写not b==c不要把not放到b和c之间去