Merge pull request #28 from SulimanSagindykov/patch-1

Update ex2_3.md
This commit is contained in:
David Beazley
2023-07-23 04:41:06 -05:00
committed by GitHub

View File

@@ -220,7 +220,7 @@ Watch what happens if you do the for-loop again:
```python ```python
>>> for n in squares: >>> for n in squares:
print(n) print(n)
>>> >>>
``` ```
@@ -291,7 +291,7 @@ False
>>> >>>
``` ```
Here is an subtle use of a generator expression in making comma Here is a subtle use of a generator expression in making comma
separated values: separated values:
```python ```python