+ 3
What us the operator := in python?
What is := operator for exactly, why not just using = ?
4 Réponses
+ 2
In addition to Janning⭐ 's answer: In maths you use the extra colon ':' to know which side is defined as which.
`x := 5` means "x is defined as 5", but you could also write that as `5 =: x`.
However `5 := x` means the opposite, "5 is defined as x"
+ 3
Check this one.
https://www.sololearn.com/discuss/2467188/?ref=app
+ 2
I have never seen this operator 😕
+ 2
Here's what Stack Overflow has to say on the matter:
https://stackoverflow.com/questions/26000198/what-does-colon-equal-in-JUMP_LINK__&&__python__&&__JUMP_LINK-mean