Term
|
Definition
a container, which is an object that groups related objects together. |
|
|
Term
|
Definition
accepts a single iterable object argument, such as a string, list, or tuple, and returns a new list object. |
|
|
Term
|
Definition
an integer corresponding to a specific position in the list's sequence of elements. |
|
|
Term
|
Definition
able to grow and shrink without the program having to replace the entire list with an updated copy |
|
|
Term
|
Definition
|
|
Term
|
Definition
perform a useful operation on a list such as adding or removing elements, sorting, reversing, etc. |
|
|
Term
|
Definition
for my_var in my_list: # Loop body statements go here |
|
|
Term
|
Definition
a placeholder for no input ex. max_even = None |
|
|
Term
|
Definition
results in the variables pos and token being assigned the current loop iteration element's index and value, respectively. |
|
|