3 lines
221 B
Python
3 lines
221 B
Python
def make_shirt(size='S', message='your text here'):
|
|
"""Takes two string arguments of 'Size' and 'Message' and outputs the resulting string"""
|
|
print(f"\tNew shirt to be made:\n\tSIZE: {size}\n\tMESSAGE: {message}") |