I am reading a Python book that uses a character
<-
It seems to be used interchangeably with the = sign. Is this a common symbol to explain this? I have never seen it used elsewhere.
This is not a symbol, it simply shows that when completing a task using '=' you put the value on the right into the variable on the left.
This is just an example of pseudocode, not Python syntax.
a <- b ( a < -b) " b",
a <- b
a < -b
>>> a = -5 >>> b = 3 >>> a <- b True >>> a = 3 >>> b = 4 >>> a <- b False
, , , , , , " ". 😊
Source: https://habr.com/ru/post/1598531/More articles:Different behavior of macro C for different cases - cHow do you see where identifiers are defined in Coq efficiently? - emacsExtend JavaScript function prototype - javascriptWhy does this code not save my numbers with names? - pythonHow to programmatically configure SetProcessAffinityMask in Delphi XE7 for Windows 2012 R2 - delphiКак использовать несколько форм/действий в одном представлении в Struts 2 - javaDelphi TParallel does not use all available processors - concurrencyКак сделать обратное геокодирование с помощью API геолокации Кордовы, чтобы получить город и страну? - javascriptHow to run a command to save in Sublime Text 3? - sublimetext3Title case offer? - javascriptAll Articles