List comprehensions are exactly made for that:
smaller_list = [x for x in range(10000100001) if x % 10 == 0]
You can get more info about them in the python official documentation: http://docs.python.org/tutorial/datastructures.html#list-comprehensions