birthday
theme = input("what is your birthday theme? ")
main_color = input("What is your main color? ")
guests_number = int(input("How many people are you inviting? "))
guests_name = []
for i in range(guests_number):
message = "Please enter guest " + str(i + 1) + " name: "
name = input(message)
guests_name.append(name)
print("My birthday theme is " + theme)
print("My main color for the birthday is " + main_color)
for guest in guests_name:
print("I would like to invite " + guest + " to come to my birthday on may 13th.")
print("I am looking forward to seeing you in my party :) :)")
theme = input("what is your birthday theme? ")
main_color = input("What is your main color? ")
guests_number = int(input("How many people are you inviting? "))
guests_name = []
for i in range(guests_number):
message = "Please enter guest " + str(i + 1) + " name: "
name = input(message)
guests_name.append(name)
print("My birthday theme is " + theme)
print("My main color for the birthday is " + main_color)
for guest in guests_name:
print("I would like to invite " + guest + " to come to my birthday on may 13th.")
print("I am looking forward to seeing you in my party :) :)")