Write a function called printx() that just prints the letter "x". Then write a function called multiplex() which takes as argument an integer and prints as many times the letter "x" as the integer indicates by calling the function printx() that many times.
I already came up with this
def printx():
print ("x")
printx()
But I do not know how to proceed, some help is appreciated;)
Any suggestions?