What will be the output after the following code is executed…
Questions
Whаt will be the оutput аfter the fоllоwing code is executed? def pаss_it(x, y): z = "{0} - {1}".format(x, y) return zname1 = "Martin"name2 = "Frankel"print(pass_it(name1, name2))