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 813c7d4

Browse files
committed
Merge branch 'master' of https://github.com/kopok2/PythonCourse
2 parents a33e63f + 8583f66 commit 813c7d4

File tree

4 files changed

+3
-2
lines changed

4 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.

‎Lecture7.pdf‎

171 KB
Binary file not shown.

‎Lecture8.pdf‎

177 KB
Binary file not shown.

0 commit comments

Comments
(0)

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