Is it possible to convert a list-type into a generator without iterating through? August 29, 2023 by Tarik Try this: an_iterator = iter(a_list) … docs here. Is that what you want?