Question: 5. 5.0) Reading and understanding the following python program. Please write the outputs. def make_Tshirt (size, color, *messages) : print (Making a + str(size) +

5. 5.0) Reading and understanding the following python program. Please write the outputs. def make_Tshirt (size, color, *messages) : print ("Making a + str(size) + size, + str(color) + T shirt with the following messages on it: ') for message in messages: print (message + ' ') my_Tshirt = make_Tshirt ('M','red', 'Hello Python', Happy Life')
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
