在Python中=符号定义为赋值 运算符。它的左侧需要一个变量,右侧需要一个表达式。右边的表达式的值分配给左边的变量。变量的表达式和名称不可互换。
>>> a=10 >>> b=20 >>> c=a+b >>> a,b,c (10, 20, 30) >>> a+b=c SyntaxError: can't assign to operator
==符号是比较运算符,称为等于运算符。如果两边的操作数相等,则返回true,否则返回false
>>> 10+2 == 10 False >>> (10+2) == 12 True >>> 'computer' == 'Computer' False >>> 'computer' == "computer" True