You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Write a function called "multiply_lists" that takes two lists of equal length as arguments and returns a new list where each element is the product of the corresponding elements from the input lists.
# Example:
# List1 = [1,2,3]
# List2 = [4,5,6]
# multiply_lists(List1, List2)) Should print [4, 10, 18]