Find solutions to your problems with the help of IDNLearn.com's knowledgeable users. Find reliable solutions to your questions quickly and easily with help from our experienced experts.
def quadruple(n):
return n*4
print(quadruple(3))
print(quadruple(1))
print(quadruple(2))
I wrote my code in python 3.8. I hope this helps.