Issue
There is a list, for example,
a=[1,2,3,4]
I can use
a.append(some_value)
to add element at the end of list, and
a.insert(exact_position, some_value)
to insert element on any other position in list but not at the end as
a.insert(-1, 5)
will return [1,2,3,5,4].
So how to add an element to the end of list using list.insert(position, value)?
Solution
You’ll have to pass the new ordinal position to insert
using len
in this case:
In [62]:
a=[1,2,3,4]
a.insert(len(a),5)
a
Out[62]:
[1, 2, 3, 4, 5]
Answered By – EdChum
This Answer collected from stackoverflow, is licensed under cc by-sa 2.5 , cc by-sa 3.0 and cc by-sa 4.0