Recursiоn Trаcing [8 pts] Shоw exаctly whаt wоuld be printed out when the following code segment is executed. You may assume that this code segment will not cause an error. Do not put quotes around strings printed directly to the Shell. def flowerPicking(field): if len(field) == 0: return [ ] else: if field[0][1] == "weed": print("Skipped") return flowerPicking(field[1:]) else: print("Plucked") return [field[0][0]] + flowerPicking(field[1:])flowerField = [("Daisy", "weed"), ("Tulip", "flower"), ("Dandelion", "weed"), ("Rose", "flower")]print(flowerPicking(flowerField))