pythonlist

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

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

    del l[100:]
    

    The list truncates its contents accordingly.