SyntaxFix
Write A Post
Hire A Developer
Questions
You can't, as there are no variables in Python but only names.
For example:
> a = [1,2,3] > b = a > a is b True
Which of those two is now the correct variable? There's no difference between a and b.
a
b
There's been a similar question before.