Write a function to append two lists
Topic: Write a function to append two lists
Solution
def append_lists(l1:list, l2:list)->list: return l1.extend(l2)
List all Python Programs
Solution
def append_lists(l1:list, l2:list)->list: return l1.extend(l2)