diff --git a/Chapter_08/8-04_large_shirts.py b/Chapter_08/8-04_large_shirts.py new file mode 100644 index 0000000..f48a31e --- /dev/null +++ b/Chapter_08/8-04_large_shirts.py @@ -0,0 +1,8 @@ +# 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() \ No newline at end of file