I'm trying to change some variables (data frames) and created a simple example to illustrate.
First, I don't even know how to change the variables in the function. a is still 0 after the function completes.
Second, must I initialize a and b before calling the function if I want the function to set their value? or can I use them for the first time in my call?
def set_values(x,y):
x,y=6,7
return x,y
set_values(0,0)