0
What are placeholder variables??
2 Answers
0
Traditionally place holders are used when variables arenât mutable. So if I wanted to swap two varible values id use a place holder. in the example the place holder is c.
a = 3
b = 1
c = a
a = b
b = c
Now b=3 and a=1
0
Thanks spencer