1 2 3 4 5 6 7 8
def pick_fruits(fruits): for fruit in fruits: print(fruit) return [] pick_fruits(["apple"])[0] = "orange"