Dataset : Basic Python

Hello There,
I am seeing something very strange here.

Just trying to create new dataset with basic scripting but dont know why the data list is altering first element automatically.

Please look at the list at the end of each loop and then final nested lists. First element of nested list is altered automatically.
Any idea ?

You are mutating the row/list you added to data in place.

1 Like

Got it ! Thanks