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
Answer = int(input("On a scale of 1-5, 5 being the best and 1 being the worst,"
"How would you rate this Chat bot experience? \n Answer:" ))
if Answer in range(1,6):
print("Thank you for your feedback!")
else:
print("Enter a range between 1 and 5 Please")
Answer = input("Would you recommend this chat bot to family or friends?"
"\n1.Yes \n2.No \nAnswer:")
print(Answer.casefold())
input("What suggestions do you have that could be used to improve the user experience?")
exit()