A Short and Simple Python Script - pt.2

The following Python code is an attempt at improving the previously posted "A Short and Simple Python Script" script.

Beginning of code:

# file: App_V2.py
name = input("Hello, what's your name?: ")
print("Hello, " + name + ", and welcome!")
#Taking an integer value and assigning it to the service variable for later use
service = (input("Now please take a sit and tell me how many guests are you bringing with you tonight?: "))
#Making sure the input number is numerical (as in '1, 2, 3, etc..., and not: "one, two or three, etc..)
while type(service) != int:
service = (input("Please tell me a decimal."))
#Making a condition to define if the subjects will be plural or singular
if service > 1:
invitee = " guests"
table = " them."
clients = " all"
else:
invitee = " guest"
table = " the both of you."
clients = " the both"
print("Oh, " + str(service) + invitee + "..., then I shall prepare a table for" + table)
menu = ["Salad", "Sandwich", "Tiramisu"]
print("In regards to your order, we have " + str(len(menu)) + " specialities today !")
choice = input("What will you begin with, " + menu[0] + ", " + menu[1] + " or " + menu[2] + " ?")
#Add code to accept only the available menu choices
print("So " + choice + " for" + clients + " of you")