7 lines
188 B
Python
7 lines
188 B
Python
def describe_pets(animal_type, pet_name):
|
|
"""显示名称"""
|
|
print("\n " + animal_type + " + " + pet_name.title() + "!")
|
|
|
|
describe_pets('dog', 'dog1')
|
|
describe_pets('cat', 'cat1')
|