Python in Plain English

New Python content every day. Follow to join our 3.5M+ monthly readers.

Follow publication

Generators and Generator Expressions in Python

Oliver S
Python in Plain English
2 min readNov 6, 2022

--

Photo by Chris Ried on Unsplash
def square(n):
i = 0
while (i < n):
yield i**2
i += 1
for x in square(5):
print(x)

print(sum(square(5)))

Generator Functions

print(sum(g))
print((x**2 for x in range(5)))

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

Published in Python in Plain English

New Python content every day. Follow to join our 3.5M+ monthly readers.

Written by Oliver S

PhD in ML, working as research / software engineer

No responses yet

Write a response