Computer Science, asked by Yashas200409, 2 months ago

Predict the output of the following code fragment: 1

def wish(message, num=1):

print(message * num)

wish(‘Good’,2)

wish(“Morning”)​

Answers

Answered by saransrini03
1

OUTPUT

GoodGood

Morning

Similar questions