Separator argument in a print function is used to separate other arguments when they are displaved
seo = surexo
where strep is a string that is inserted between all other arguments in the print function. What Is displayed by the following program?
x = 9
z = 13
print(×%y, z/Y, x+y*z, ×**2*y, sep='&")
print(×%y, z/y, x+y*z, ×**2*y, sep=****) print (×%y, z/y, x+y*z, ×**2*y, sep='AAA')