1514a0b
1
2
3
4
5
def move_zero(num_list): a = [0 for i in range(num_list.count(0))] x = [i for i in num_list if i != 0] x.extend(a) return x