I am trying to insert something into a list within a list and I couldn't figure out how to go doing that.
For example, I have a list of lists:
List1 = [[10, 13, 17], [3, 5, 1]]
and I want to insert 5
into sublist with index 0 after element 13
so it would look like this:
List1 = [[10, 13, 5, 17], [3, 5, 1]]
# ^