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 631a8b7

Browse files
committed
Lecture 5
1 parent 785e053 commit 631a8b7

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

‎Lecture5.pdf‎

182 KB
Binary file not shown.

‎NewIn38.md‎

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ Walrus operator
2323

2424
```python
2525
if (n := len(a)) > 10:
26-
print(f"List is too long ({n} elements, expected <= 10)")
26+
print(f"List is too long ({n} elements,
27+
expected <= 10)")
2728
```
2829

2930

@@ -55,7 +56,8 @@ Walrus operator
5556

5657
```python
5758
[clean_name.title() for name in names
58-
if (clean_name := normalize('NFC', name)) in allowed_names]
59+
if (clean_name := normalize('NFC', name))
60+
in allowed_names]
5961
```
6062

6163

‎NewIn38.pdf‎

125 KB
Binary file not shown.

‎pandoc.txt‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pandoc file.md -t beamer -o out.pdf

0 commit comments

Comments
(0)

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