Horje
python trim zero off end of list Code Example
python trim zero off end of list
list1 = [48, 39, 23, 15, 11, 12, 5, 9, 7, 3, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0]

def pop_zeros(items):
    while items[-1] == 0:
        items.pop()

pop_zeros(list1)
pop_zeros(list2)
print(list1)

# Output:
[48, 39, 23, 15, 11, 12, 5, 9, 7, 3, 0, 0, 1, 0, 1]




Python

Related
python loc id in list Code Example python loc id in list Code Example
Reading Custom Delimited file in python Code Example Reading Custom Delimited file in python Code Example
huggingface transformers change download path Code Example huggingface transformers change download path Code Example
pandas select rows by condition in list Code Example pandas select rows by condition in list Code Example
views.MainView.as_view(), name='all' Code Example views.MainView.as_view(), name='all' Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7