Write a python function that takes two lists and append second list after the first list
Topic: Write a python function that takes two lists and append second list after the first list
Solution
lst1 = eval(input("Enter list : ")) lst2 = eval(input("Enter list : ")) print(lst1 + lst2)
List all Python Programs