python copy a 2d list

Solutions on MaxInterview for python copy a 2d list by the best coders in the world

showing results for - "python copy a 2d list"
Alexander
11 Jan 2018
1y = [row[:] for row in x]
2