2025-02-27 00:33:03 +00:00

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}")