Skip to content

Commit 761119f

Browse files
committed
run the end adder script
1 parent 93c02c2 commit 761119f

23 files changed

+169
-0
lines changed

TODO.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,8 @@ This tutorial is not complete. It still needs:
2424
- "What the heck is this?" section for stuff i haven't talked about
2525
- regexes
2626
- yield
27+
28+
***
29+
30+
You may use this tutorial freely at your own risk. See
31+
[LICENSE](LICENSE).

answers.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -291,3 +291,8 @@ These are answers for exercises in the chapters. In programming, there's always
291291
You may use this tutorial freely at your own risk. See [LICENSE](LICENSE).
292292

293293
[Back to the list of contents](README.md#list-of-contents)
294+
295+
***
296+
297+
You may use this tutorial freely at your own risk. See
298+
[LICENSE](LICENSE).

classes.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -418,3 +418,11 @@ print("You entered " + word + ".")
418418
- `__init__` is a special method, and it's ran when a new instance of a
419419
class is created. It does nothing by default.
420420
- Don't use classes if your code is easier to read without them.
421+
422+
***
423+
424+
You may use this tutorial freely at your own risk. See
425+
[LICENSE](LICENSE).
426+
427+
[Previous](modules.md) | [Next](README.md) |
428+
[Back to the list of contents](README.md#list-of-contents)

contact-me.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,8 @@ it, there are a few ways to contact me:
2121
You may use this tutorial freely at your own risk. See [LICENSE](LICENSE).
2222

2323
[Back to the list of contents](README.md#list-of-contents)
24+
25+
***
26+
27+
You may use this tutorial freely at your own risk. See
28+
[LICENSE](LICENSE).

defining-functions.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -541,3 +541,11 @@ spend time with them until you're familiar with defining functions.
541541
2. Find more exercises about defining functions online.
542542

543543
Answers for the first and second exercise are [here](answers.md).
544+
545+
***
546+
547+
You may use this tutorial freely at your own risk. See
548+
[LICENSE](LICENSE).
549+
550+
[Previous](dicts.md) | [Next](what-is-true.md) |
551+
[Back to the list of contents](README.md#list-of-contents)

dicts.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,3 +191,11 @@ me: my password
191191
```
192192

193193
**TODO:** lists as keys vs tuples as keys.
194+
195+
***
196+
197+
You may use this tutorial freely at your own risk. See
198+
[LICENSE](LICENSE).
199+
200+
[Previous](trey-hunner-zip-and-enumerate.md) | [Next](defining-functions.md) |
201+
[Back to the list of contents](README.md#list-of-contents)

editor-setup.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,3 +130,8 @@ about it here, [tell me](contact-me.md).
130130
You may use this tutorial freely at your own risk. See [LICENSE](LICENSE).
131131

132132
[Back to the list of contents](README.md#list-of-contents)
133+
134+
***
135+
136+
You may use this tutorial freely at your own risk. See
137+
[LICENSE](LICENSE).

exceptions.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -472,3 +472,11 @@ except OSError:
472472
sys.exit(1) # time to give up
473473
greet()
474474
```
475+
476+
***
477+
478+
You may use this tutorial freely at your own risk. See
479+
[LICENSE](LICENSE).
480+
481+
[Previous](files.md) | [Next](modules.md) |
482+
[Back to the list of contents](README.md#list-of-contents)

files.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -369,3 +369,11 @@ else:
369369

370370
print("Done! Now run this program again and select 'y'.")
371371
```
372+
373+
***
374+
375+
You may use this tutorial freely at your own risk. See
376+
[LICENSE](LICENSE).
377+
378+
[Previous](what-is-true.md) | [Next](exceptions.md) |
379+
[Back to the list of contents](README.md#list-of-contents)

getting-help.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,3 +56,8 @@ help on IRC is much faster.
5656
You may use this tutorial freely at your own risk. See [LICENSE](LICENSE).
5757

5858
[Back to the list of contents](README.md#list-of-contents)
59+
60+
***
61+
62+
You may use this tutorial freely at your own risk. See
63+
[LICENSE](LICENSE).

0 commit comments

Comments
 (0)