Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update mentoring.md #2349

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tracks/python/exercises/armstrong-numbers/mentoring.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def is_armstrong_number(number):
# With a generator expression passed to sum
total = sum(digit ** count for digit in digits)
```
Students are often unaware of [generator expressions][pep-289] and that they can be passed directly to functions that accept iterables.
Students are often unaware of [generator expressions][pep-289] and that they can be passed directly to functions that accept iterable.
The first line uses a comprehension to build a `list` for `sum()` to iterate through.
The middle step of a temporary list takes up space in memory and is not needed.
The second line shows the `list` replaced by an equivalent `generator expression` that `sum()` can also iterate through.
Expand Down
Loading