# multiplication of two or more numbers
def multiple(*a):
result = 1
for i in a:
result = result * i
return result
# insert any number of arguments for multiplication, example:
res = multiple(12, 2, 5)
print(res)
# In this example, code output is = 120
def multiply_by_two(numbers):
return [num * 2 for num in numbers]