Write a functiom to concat two list
Topic: Write a functiom to concat two list
Solution
l1 = [1,2,3] l2 = [4,5,6] def list_concat(l1,l2): return l1 + l2
List all Python Programs
Solution
l1 = [1,2,3] l2 = [4,5,6] def list_concat(l1,l2): return l1 + l2