add list as element in array

Solutions on MaxInterview for add list as element in array by the best coders in the world

showing results for - "add list as element in array"
Valentín
19 Feb 2020
1numbers = [100,200,250,300]
2numbers.append([101,201,251,301])
3print len(numbers)