Skip to content

Commit

Permalink
fix: typo @tobok-dot fixes #6
Browse files Browse the repository at this point in the history
  • Loading branch information
kandolfp committed Oct 21, 2024
1 parent 782940f commit 77f054f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sss/sss1.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ Examples
## Set, List and Dictionary Comprehensions
(@) Transform a list of tuples into a list of numbers using (nested) list comprehension, i.e. hte list `flat` should be created and filled in one call from the content of `list_of_tuples`.
(@) Transform a list of tuples into a list of numbers using (nested) list comprehension, i.e. the list `flat` should be created and filled in one call from the content of `list_of_tuples`.
```{.python}
list_of_tuples = [(1, 2, 3), (4, 5, 6), (7, 8), (9)]
flat = [1, 2, 3, 4, 5, 6, 7, 8, 9]
Expand Down

0 comments on commit 77f054f

Please sign in to comment.