python-crash-course/Chapter_08/8-04_large_shirts.py
2025-02-21 14:41:04 +00:00

8 lines
268 B
Python

# Exercise 8-4 Large Shirts
# Learning Objective: Create function with default values.
def make_shirt(size='L', message='I love Python'):
print(f"\tNew shirt to be made:\n\tSIZE: {size}\n\tMESSAGE: {message}")
make_shirt("M", "Hello Python World")
make_shirt()