Answers for "python how to print python in 2d list neatly"

0

how to create one list from 2d list python

>>> l = [[1, 2, 3], [4, 5, 6], [7], [8, 9]]
>>> sum(l, [])
[1, 2, 3, 4, 5, 6, 7, 8, 9]
Posted by: Guest on October-24-2021

Python Answers by Framework

Browse Popular Code Answers by Language