def my_ function (fname, lname).
Print (frame +" " lname)
my_function ("SACHIN","TENDULKAR")
Answers
Answered by
1
To be Honest, The following results in a "function not defined" error if you will run it.
Correct Code:
def my_function(fname, lname):
print(fname + " " + lname)
my_function("SACHIN", "TENDULKAR")
OUTPUT:
SACHIN TENDULKAR
Similar questions
Computer Science,
5 months ago
Math,
5 months ago
Chemistry,
5 months ago
Biology,
10 months ago
Geography,
10 months ago
Computer Science,
1 year ago
Math,
1 year ago