9 lines
288 B
Python
9 lines
288 B
Python
def make_shirt(size='large', message='I love Python!'):
|
|
"""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()
|
|
make_shirt(size='medium')
|
|
make_shirt('small', 'Programmers are loopy.')
|