Skip to content

Instantly share code, notes, and snippets.

@BetterProgramming
Created January 18, 2021 15:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BetterProgramming/bb8ec8e4d4b48cfb411009dcc9027fb3 to your computer and use it in GitHub Desktop.
Save BetterProgramming/bb8ec8e4d4b48cfb411009dcc9027fb3 to your computer and use it in GitHub Desktop.
num=[1,2,3,4,5]
result=(i**2 for i in num)
print (result)
#Output:<generator object <genexpr> at 0x02C584C0>
print (list(result))
#Output:[1, 4, 9, 16, 25]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment