# easy way to create list of any size list_size = 10 list_ = [i for i in range(1,list_size)] print(list_)