Computer Science, asked by aishwarya2942, 9 months ago

Detect the error. python programming language

def Func(message,num=1):

print(message*num) Func(‘python’)
Func(‘easy’,3)​

Answers

Answered by Bhargavmende
1

Answer:

Func should be fun

F should not be capital

Explanation:

Python is Case sensitive

Similar questions