在Python中更改方程的位置

huangapple go评论53阅读模式
英文:

Changing the place of equation in Python

问题

I defined the "true" variable summing up all the t, r, u, and e integers at the first image. When I wrote t + r + u + e = true, it gave an error but when I changed their places and wrote true = t + r + u + e, it worked.

[错误在这里] (https://i.stack.imgur.com/srlWG.png)
[已修复但为什么] (https://i.stack.imgur.com/L9nm8.png)

能有人解释一下吗?

  • 100天编程挑战,第3天,爱情计算器项目
英文:

I defined the "true" variable summing up all the t, r, u and e integers at the first image. When I wrote t + r + u + e = true, it gave an error but when I changed their places and wrote true = t + r + u + e, it worked.

[ERROR HERE] (https://i.stack.imgur.com/srlWG.png)
[FIXED BUT WHY] (https://i.stack.imgur.com/L9nm8.png)

Can somebody please explain?

  • 100 Days of Code, Day 3, Love Calculator project

答案1

得分: 1

方程和赋值语句看起来相似,但功能不同,通过=进行赋值,通过==进行相等性语句区分。

赋值以变量 = 表达式的形式出现,在表达式求值后,其值被分配给变量。你并没有将true等同于t + r + u + e,你是将t + r + u + e的值赋给true。这有一个方向性,一些编程语言强调这一点,使用<-代替=(例如True <- t + r + u + e)。

另一个很好的例子是当你想要将一个变量的值赋给另一个变量时会发生什么。

foo = 1
bar = 2
foo = bar
print(foo)

这个打印语句应该输出什么?我们将bar赋给了foo还是foo赋给了bar?如果你允许以任何方向编写赋值语句,就会引入这种歧义。

英文:

Equations and assignment statements look similar but are functionally different and are differentiated with = for assignment and == for equality statements.

Assignments come in the form variable = expression and after the expression is evaluated, its value is assigned to the variable. You are not equating true with t + r + u + e, you are assigning the value of t + r + u + e to true. There is a directionality to this and some programming languages emphasize this by using <- instead of = (E.g. True <- t + r + u + e).

Another good example is what happens when you want to assign one variable's value to another.

foo = 1
bar = 2
foo = bar
print(foo)

What should this print statement output? Did we assign bar to foo or foo to bar? If you were allowed to write assignment statements in either direction, you introduce this ambiguity.

huangapple
  • 本文由 发表于 2023年6月22日 01:27:35
  • 转载请务必保留本文链接:https://go.coder-hub.com/76525804.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定