I want solution for the following code using generators | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

I want solution for the following code using generators

given code: even=[2*i for i in range(10**100)] This will give Memoryerror I want solution for this using Generators.

7th Aug 2020, 8:37 PM
Gaurav H. Mehare
3 Answers
+ 4
Use round brackets😉
7th Aug 2020, 8:57 PM
Oma Falk
Oma Falk - avatar
+ 1
Thank you Jan Markus
8th Aug 2020, 6:36 PM
Gaurav H. Mehare
+ 1
gaurav even=(2*i for i in range(10**100)) is a generator
8th Aug 2020, 6:53 PM
Oma Falk
Oma Falk - avatar