Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- shopping = []
- how_many = input("how many items of shopping do you have? ")
- how_many = int(how_many)
- for item_number in range (how_many):
- item = input("What is the number " + str(item_number) + "? ")
- shopping.append(item)
- print(shopping)
- for item in shopping:
- print(item)
- print("You have " + str(len(shopping)) + " items in your shopping list")
Advertisement
Add Comment
Please, Sign In to add comment