window.ENTITIES={'/api/snippets/python/python%20remove%20first%20row%20from%202d%20list':[{"result":true,"message":null,"batch":{"type":"python","name":"python remove first row from 2d list","items":[{"id":"DKqXZj","type":"python","name":"python remove first row from 2D list","content":"my_list = [\n [11, 12, 13],\n [21, 22, 23],\n [31, 32, 33]\n]\n\ndel my_list[0] # remove first row\n\nprint(my_list) # [[21, 22, 23], [31, 32, 33]]","source":"","author":{"id":"ZaEQEa","name":"Mark-Rotteveel","avatar":"1629142676006__ZaEQEa__w40px_h40px.jpg","points":537,"role":"BASIC"},"creationTime":1640023091000,"updateTime":null,"removalTime":null},{"id":"1y9Pq1","type":"python","name":"python remove first row from 2D list","content":"my_list = [\n [11, 12, 13],\n [21, 22, 23],\n [31, 32, 33]\n]\n\nmy_list.pop(0) # remove first row\n\nprint(my_list) # [[21, 22, 23], [31, 32, 33]]","source":"","author":{"id":"5073Q0","name":"Antonina-Trejo","avatar":"1629129355505__5073Q0__w40px_h40px.jpg","points":477,"role":"BASIC"},"creationTime":1640023094000,"updateTime":null,"removalTime":null}]}}]};