# Yixuan Sun
# 9/20/21
# i learn how to code use define
# difficult is put the wrong word at a wrong place i fix it by puting the right place
# create a program called petstore()
# petstore()takes 2 string arguments: pet & price
def petstore (pet, price):
pet = (pet_entry)
return 'title: ' + pet + 'costs $' + price
# gather input for pet_type and price_entry to use in calling petstore()
pet_entry = input("enter a pet name: ")
price_entry = input("price: ")
info = petstore(pet_entry,price_entry)
# print the return value of petstore()
petstore(pet_entry, price_entry)