python how to get from list code example Example: get list from list python list1 = [1, 2, 3, 4, 5] list2 = list1[0:3] print(list2) //output [1,2,3]