174k views
3 votes
Def Mixer(a,b,c):

x1=a//100+1
x2=a%100
x=str(x1)+str(x2)
y1=b[0:2]
y2=c[2]+c[0]
y3=b[len(b)−2:len(b)]
y=y1+y2+y3
return x+ " " +y
def main():
x= "Super"
y = "Mummy"
z =1921
print(Mixer(z, x,y))
main()
Referring to the code above, list the names of all of the arguments.

1 Answer

4 votes

Final answer:

The names of the arguments in the code are a, b, and c.

Step-by-step explanation:

The names of the arguments in the code are a, b, and c.

User Dyelawn
by
8.2k points