So here is my code :
p2=[]
p1=[]
def arraypoint(x,y):
if len(p1)>2:
p2.append(x)
p2.append(y)
else:
p1.append(x)
p1.append(y)
return p2,p1
what I want to do is taking x,y coordinates from user and adding them to my arrays.However if I compile that function with code down below:
arraypoint(3,4)
arraypoint(2,3)
it just adds p1 four elements which is logical because when I run the function again it takes len(p1)==0 .So can you help me how can I add 2 elements to p1 and pass rest of them to p2 . I dont want to do something like arraypoint(x,x1,y,y1)
so user should pass 2 coordinates each time.
question from:
https://stackoverflow.com/questions/65625750/how-can-i-use-one-function-for-2-arrays 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…