How could i get the same result with a map? i'm a beginner trying to learn how maps relate to iteration. Is it possible to put this loop into a map?
user_list = [int(input("what is the fist integer? "))]
for i in user_list:
if i < 100:
i *= 2
if i > 100:
break
user_list.append(i)