wish_list = [] for i in range(1, 6): item = input(f"Enter the {i} thing: ") wish_list.append(item) print(",".join(wish_list))