嵌套 for 循环

  1. adj = ["red", "big", "tasty"]
  2. fruits = ["apple", "banana", "cherry"]
  3.  
  4. for x in adj:
  5. for y in fruits:
  6. print(x, y)