Hi in the first couple parts of the Alien Bot projects all what happens is that the computer asks the user to either continue with the question or exit and it is not doing anything after it asks the first question.
this is my code:
Define .greet() below:
def greet(self):
self.name = input("What is your name “)
will_help = f"Hi {self.name}, I am Etcetera, I do not not live on this planet, will you tell me about your life?”
if will_help in self.negative_responses:
print(“Byeeeeeee!”)
return False
self.chat()