Answer:
def double_up(self, mylist):
doubled = list()
for item in mylist:
for i in range(2):
doubled.append(item)
return doubled
Step-by-step explanation:
The program method double_up gets the list argument, iterates over the list and double of each item is appended to a new list called doubled.
Methods are functions defined in classes. A class is a blueprint of a data structure. Each instance of the same class holds the same attributes and features.