python中“=”表示的是赋值,是将某一数值赋给某个变量,且无返回值;而“==”表示的是判断两个数据是否相等,其返回值为True或False。
实例:
a = 33 == 4print(a)
a = 3
3 == 4
print(a)
输出结果为:
3false
3
false