Permalink
Cannot retrieve contributors at this time
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?
ChatBot/Account.py
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
51 lines (35 sloc)
1.9 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Defining function Account# | |
def Account(): | |
name = str(input("Tell me about yourself, what is your name? ")) | |
def intro(name): | |
print("Well hello " + str(name) + "!") | |
intro.str_age = float(input("Tell me " + str(name) + " more about you, how old are you? ")) | |
while 0>intro.str_age>110: | |
print("Pretty sure that is not possible " + str(name) + " haha") | |
intro.str_age = float(input("Try giving me your actual age ")) | |
print("Ok, I know your age " , name) | |
intro.str_height = float(input("How about your height in centimeters? ")) | |
while intro.str_height<0: | |
intro.str_height = float(input("Pretty sure that is not possible " + str(name) + ". Try again!")) | |
print("Alright, your height is " , intro.str_height ) | |
intro.str_weight = float(input("Lastly I need your weight, no need to have shame, Im a bot, I won't judge... ")) | |
while intro.str_weight<0: | |
intro.str_weight = float(input("Thats not possible, " + name + ". Try again!")) | |
print("Alright, I think I have everything I need! Thank you! ") | |
#Calling function# | |
intro(name) | |
valuesconclusion = "Is this right? " + name + " " + str(intro.str_age) + " " + str(intro.str_height) + " " + str(intro.str_weight) | |
conclusion = print(valuesconclusion) | |
conclusion = input() | |
conclusion = conclusion.lower() | |
if conclusion == "yes": | |
print("Perfect, that's all I need") | |
else: | |
finalconclusion = print("Uh oh, we have to start over,is that ok?") | |
finalconclusion = input() | |
finalconclusion = finalconclusion.lower() | |
if finalconclusion == "yes" or finalconclusion == "ok" or finalconclusion == "sure": | |
intro(name) | |
else: | |
print("I didnt love you anyway, you have no friends, good bye.") | |
Account () | |