Source code for AutomateTheBoringStuffWithPython.Ch04.P3_myPets
"""My pets
This program checks if a given pet's name is in a list of pet names.
"""
[docs]def main():
myPets = ['Zophie', 'Pooka', 'Fat-tail']
print('Enter a pet name:')
name = input()
if name not in myPets:
print('I do not have a pet named ' + name)
else:
print(name + ' is my pet.')
if __name__ == "__main__":
main()