Completed Exercise 8-3 T-Shirt

This commit is contained in:
cheeks 2025-02-11 10:48:53 -05:00
parent 1da26a13cd
commit cdc0e626dd

View File

@ -0,0 +1,7 @@
# Exercise 8-3 T-Shirt
# Learning Objective: Write a function with 2 arguments.
def make_shirt(size='S', message='your text here'):
print(f"\tNew shirt to be made:\n\tSIZE: {size}\n\tMESSAGE: {message}")
make_shirt("L", "Hello Python World")