python - Strange loops and append functions within them -
I was reading, so I found a strange loop which resets a list as "blank" and then adds a value to this list here what i mean:
def drawFood (Self, food matrix): food images = [] color = enumate FOOD_COLOR for xnum, x (food matrix): Poor self Koapret and (xNum * 2) & Lt; = FoodMatrix.width: color = TEAM_COLORS [0] if self.capture and (xNum * 2) & gt; Foodmates.width: color = TEAM_COLORS [1] imageRow = [] foodImages.append (imageRow) for ynum, cell (x) in enumerate: if cell: # here is the food screen = self.to_screen ((xNum, yNum) ) Dot = circle (screen, FOOD_SIZE * self.gridSize, outlineColor = color, fillcolor = color, width = 1) imageRow.append (dot) Other: imageRow.append (none) Primary However, foodImages = []
and imageRow = []
are both food items. Reset to empty in each iteration of the loop, the list of food images is increasing. Is it possible because we have imageRow
and imageRow list images of food
to food images
The list continues to grow, though imageRow
was set to empty?
The code can be a little confusing.
imageRow = [] FoodImages.append (imageRow) ... imageRow.append ("Something")
foodImages
Only a blank list is set to the set even if you add an empty imageRow
to foodImages
, you still have the same imageRow
object But are working later on. So when you add something to the code below and below in the imageRow
it will be visible to the foodImages
list (which contains imageRow
object).
Comments
Post a Comment