常见python小错误——(持续更新~欢迎灌水~)

python谁能不犯错

  • 1. 赋值、判断容易error

1. 赋值、判断容易error

赋值‘=’:

a = b = c =10

判断‘==’:

if a == 10:
	pass

你可能感兴趣的:(python)