Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 8583f66

Browse files
committed
Fix
1 parent 28b6ca8 commit 8583f66

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

‎Lecture6.md‎

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,8 @@ list(map(ord, 'abcdef'))
269269
# Warunki
270270

271271
```python
272-
list(map((lambda x: x ** 2), filter((lambda x: x % 2 == 0), range(5))))
272+
list(map((lambda x: x ** 2),
273+
filter((lambda x: x % 2 == 0), range(5))))
273274

274275
[x ** 2 for x in range(5) if not x % 2]
275276
```
@@ -310,4 +311,4 @@ def times_four(S):
310311
yield c * 4
311312

312313
(c * 4 for c in S) # <generator object at 0x...>
313-
```
314+
```

‎Lecture6.pdf‎

6 Bytes
Binary file not shown.

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /