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
1
OUTPUT
GoodGood
Morning
Similar questions