Hi Rucha,
Thanks for the reply,
Just be patient with me, trying to get the foundations right.
What I’m confused (I can solve the exercises, but what to fully understand what is what and why) is “app”, being a list, it already exist and I don’t need to specify it right?
As a list ‘app’ it refers to the full table with all the apps details (rows and columns)?
apps_data is a list of lists with the rows and columns like structure.
app on the other hand is a variable that we create while using a For Loop. This variable will then store each and every row from the apps_data. One row at a time! from first row to last row in the apps_data list of lists.
“app” here is the name of the variable. You may find different names for this in various examples in and out of DQ.
such as element, item, row, each_row, each_element etc.
The idea behind this is, we need to perform some operation on every row of apps_data, but one at a time.
Let us know if you still have doubts. Perhaps, the better moderators of DQ will help us both!.
Just in case you wish to explore on your own, DQ comm already has various posts with queries on this topic and moderators have explained them excellently. You can try surfing through them.
Thanks! Now it’s clear, I must have got confused at some point and this thing about ‘app’ was slowing me down. Thanks for the great explanation and the patience, I’m still getting used to where to find the informations. Cheers. Paolo