Computer Science, asked by omgullushankar123456, 10 months ago

def my_ function (fname, lname).
Print (frame +" " lname)
my_function ("SACHIN","TENDULKAR")​

Answers

Answered by DrNykterstein
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