window.ENTITIES={'/api/snippets/python/python%20remove%20row%20with%20specified%20index%20from%202d%20list':[{"result":true,"message":null,"batch":{"type":"python","name":"python remove row with specified index from 2d list","items":[{"id":"jMRB01","type":"python","name":"python remove row with specified index from 2D list","content":"my_list = [\n [11, 12, 13],\n [21, 22, 23],\n [31, 32, 33]\n]\n\nrow_index = 1\n\nmy_list.pop(row_index) # remove row with specified index\n\nprint(my_list) # [[11, 12, 13], [31, 32, 33]]","source":"","author":{"id":"QaNKlo","name":"Nataniel-Barclay","avatar":"1629131030281__QaNKlo__w40px_h40px.jpg","points":499,"role":"BASIC"},"creationTime":1640023608000,"updateTime":null,"removalTime":null},{"id":"DZYOm1","type":"python","name":"python remove row with specified index from 2D list","content":"my_list = [\n [11, 12, 13],\n [21, 22, 23],\n [31, 32, 33]\n]\n\nrow_index = 1\n\ndel my_list[row_index] # remove row with specified index\n\nprint(my_list) # [[11, 12, 13], [31, 32, 33]]","source":"","author":{"id":"20wdyD","name":"Teilsa","avatar":"1629131110828__20wdyD__w40px_h40px.jpg","points":1105,"role":"BASIC"},"creationTime":1640023610000,"updateTime":null,"removalTime":null}]}}]};