Join two list in a single list in python Leave a Comment / Python Programs / By brcinstitute111@gmail.com View All Python Programs Source Code list1=[1,2,3]list2=[“Art”,”Mart”,”Heart”]join=list1+list2print(join) Output [1, 2, 3, ‘Art’, ‘Mart’, ‘Heart’] View All Python Programs