Here's what I want the layout to look. I want it to be a function so I can use it in the cmd prompt. The lengths of each list have to be the same, if not it should return none
def add_elements(list1, list2):
if len(list1)==len(list2):
for i in list1:
else:
None
I dont know if the "for i in list1:" is what I should use, if so what comes after?