0

So i have an array that looks like

arr = [
["some_id", 26, "some_id"],
["some_id", 93, "some_id"],
["some_id", 58, "some_id"]
]

and I would like the outcome to be

arr = [
["some_id", 26, "some_id"],
["some_id", 58, "some_id"],
["some_id", 93, "some_id"]
]

Can someone please help me figure out how to do so? I'm not very experienced in python

3
  • What have you tried so far? Commented Aug 24, 2021 at 22:57
  • I havent tried anything because its been confusing me Commented Aug 24, 2021 at 22:58
  • Please have a look at: How much research effort is expected of Stack Overflow users?! Commented Aug 24, 2021 at 22:59

0

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.