Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
#function to greet the user with their name
def greeting_Function():
print("Hello, I am EUGENE! I am here to help recommend recipes for you to use, based on what you tell me you are looking for!")
name = input("What is your name? ")
while name == "":
if name != "":
name = name.capitalize()
print("Great to meet you " + str(name) + ("!")
else:
print("Please enter a name.")