So I am running a for loop as code example:
df=[]
for i in pd:
final=......
df.append(final)
I get he following output for df
A B C
1 2 3
A B C
4 5 6
and so on how do I make the append only append the values becauset his for is running for around 1000 times and 1000 times the df results are as the above
could anyone help
Thank you