""" double.py write a function that returns twice a number. """ def double(x): """ return twice x """ return 2 * x def main(): n = int(input("What is n? ")) answer = double(double(n)) # what is this doing ? print(f" double double of {n} is {answer}.") main()