Completed Exercise 8-4 Large Shirts
This commit is contained in:
parent
cdc0e626dd
commit
b60ae59dc8
8
Chapter_08/8-04_large_shirts.py
Normal file
8
Chapter_08/8-04_large_shirts.py
Normal file
@ -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()
|
||||
Loading…
x
Reference in New Issue
Block a user