8 lines
273 B
Python

def make_shirt(size, message):
"""Summarize the shirt that's going to be made."""
print(f"\nI'm going to make a {size} t-shirt.")
print(f'It will say, "{message}"')
make_shirt('large', 'I love Python!')
make_shirt(message="Readability counts.", size='medium')