How do I truncate a list?

If I have a list and want to truncate it so it is no more than 100 items, how do I do this?


Solution 1:

To modify the list in place (rather than make a shorter copy of the list), use:

del l[100:]

Solution 2:

You can use list slicing:

a = a[0:100]