Difference between var() commands
x,y = var('x y')
x,y = var('x, y')
What is the difference between having the comma in between variable names? As opposed to just a space separating them.
x,y = var('x y')
x,y = var('x, y')
What is the difference between having the comma in between variable names? As opposed to just a space separating them.
There is no difference in terms of what is returned -- you can use whichever you prefer. However, you have to be consistent.
"being consistent" means that you can't do `var('x,y z')`
Asked: 12 years ago
Seen: 857 times
Last updated: May 10 '12