Answer:
If you want a loop that continually asks the user what type of pet they have until they input 'stop'...
You could use this loop:
while True:
response = input('What type of pet do you have? ')
if response == 'stop':
break
else:
print(f'You have one {response}. Total # of Pets: 1')