I have a list List:
List = [-2,9,4,-6,7,0,1,-4]
For numbers less than zero (0) in the list , I would like to skip those numbers and form an
First use lower case for variable names, second don't use list because it reserved name.
list
Then just do an if inside the list comprehension
my_list = [i for i in init_list if i >= 0 ]