In my python course we are learning about for loops and I still do not understand why we need (in this example) "x" in the code. Below is an example taken from W3schools.
fruits = ["apple", "banana", "cherry"]
for x in fruits:
  if x == "banana":
    continue
  print(x)
My question is why do we need to use 'x' (or any other variable) for this, when we just want to cycle through the list that is 'fruits'?
 
     
     
     
     
    