DrZhang We can use list comprehensions to create a new list by filtering elements of an existing one, like creating a list of high_data. >>> data = [1,2,3,4,5] >>> high_data = [i for i in data if i >3] >>> high_data [4, 5]