Answer: while(pet!="stop"):
Step-by-step explanation:
here was my code for that lesson
pet = input("What pet do you have? ")
total = 0
while pet!="stop":
total+=1
print("You have one " + pet + ". Total # of Pets: " + str(total))
pet = input("What pet do you have? ")