Untitled

mail@pastecode.io avatar
unknown
plain_text
a month ago
135 B
3
Indexable
Never
wish_list = []

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

print(",".join(wish_list))
Leave a Comment