Skip to content

Commit 0939225

Browse files
committed
better end
1 parent 67c75e8 commit 0939225

31 files changed

+117
-54
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,10 +111,12 @@ have helped me with it:
111111

112112
***
113113

114-
If you like this tutorial, please [give it a
115-
star](README.md#how-can-i-thank-you-for-writing-and-sharing-this-tutorial).
114+
If you have trouble with this tutorial please [tell me about
115+
it](./contact-me.md) and I'll make this tutorial better. If you
116+
like this tutorial, please [give it a
117+
star](./README.md#how-can-i-thank-you-for-writing-and-sharing-this-tutorial).
116118

117119
You may use this tutorial freely at your own risk. See
118-
[LICENSE](LICENSE).
120+
[LICENSE](./LICENSE).
119121

120-
[List of contents](README.md#list-of-contents)
122+
[List of contents](./README.md#list-of-contents)

TODO.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,12 @@ This tutorial is not complete. It still needs:
3030

3131
***
3232

33-
If you like this tutorial, please [give it a
34-
star](README.md#how-can-i-thank-you-for-writing-and-sharing-this-tutorial).
33+
If you have trouble with this tutorial please [tell me about
34+
it](./contact-me.md) and I'll make this tutorial better. If you
35+
like this tutorial, please [give it a
36+
star](./README.md#how-can-i-thank-you-for-writing-and-sharing-this-tutorial).
3537

3638
You may use this tutorial freely at your own risk. See
37-
[LICENSE](LICENSE).
39+
[LICENSE](./LICENSE).
3840

39-
[List of contents](README.md#list-of-contents)
41+
[List of contents](./README.md#list-of-contents)

advanced/answers.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11

22
***
33

4-
If you like this tutorial, please [give it a
4+
If you have trouble with this tutorial please [tell me about
5+
it](../contact-me.md) and I'll make this tutorial better. If you
6+
like this tutorial, please [give it a
57
star](../README.md#how-can-i-thank-you-for-writing-and-sharing-this-tutorial).
68

79
You may use this tutorial freely at your own risk. See

advanced/datatypes.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ types can do a lot of the work for you.
1313
> If it looks like a duck and quacks like a duck, it must be a duck.
1414
1515
Many things in this tutorial are not really something but they behave
16-
like something. For example, we'll learn about many things that behave
16+
like something. For example, we'll learn about many classes that behave
1717
like dictionaries. They are not dictionaries, but we can use them just
1818
like if they were dictionaries. This programming style is known as
1919
**duck-typing**.
@@ -110,6 +110,8 @@ things we can do with sets:
110110
{'Nitori', 'theelous3', 'go|dfish', 'RubyPinch'}
111111
>>> a ^ b # names in a or b, but not both
112112
{'RubyPinch', 'Nitori', 'go|dfish'}
113+
>>> a - b # names in a but not in b
114+
{'go|dfish', 'RubyPinch'}
113115
>>>
114116
```
115117

@@ -388,7 +390,9 @@ code on Python versions older than 3.5.**
388390

389391
***
390392

391-
If you like this tutorial, please [give it a
393+
If you have trouble with this tutorial please [tell me about
394+
it](../contact-me.md) and I'll make this tutorial better. If you
395+
like this tutorial, please [give it a
392396
star](../README.md#how-can-i-thank-you-for-writing-and-sharing-this-tutorial).
393397

394398
You may use this tutorial freely at your own risk. See

advanced/functions.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,9 @@ does, so using keyword-only arguments makes sense.
290290

291291
***
292292

293-
If you like this tutorial, please [give it a
293+
If you have trouble with this tutorial please [tell me about
294+
it](../contact-me.md) and I'll make this tutorial better. If you
295+
like this tutorial, please [give it a
294296
star](../README.md#how-can-i-thank-you-for-writing-and-sharing-this-tutorial).
295297

296298
You may use this tutorial freely at your own risk. See

advanced/iters.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,9 @@ does the same thing as our `count()`.
445445

446446
***
447447

448-
If you like this tutorial, please [give it a
448+
If you have trouble with this tutorial please [tell me about
449+
it](../contact-me.md) and I'll make this tutorial better. If you
450+
like this tutorial, please [give it a
449451
star](../README.md#how-can-i-thank-you-for-writing-and-sharing-this-tutorial).
450452

451453
You may use this tutorial freely at your own risk. See

advanced/magicmethods.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,9 @@ are not meant to be imported.
235235

236236
***
237237

238-
If you like this tutorial, please [give it a
238+
If you have trouble with this tutorial please [tell me about
239+
it](../contact-me.md) and I'll make this tutorial better. If you
240+
like this tutorial, please [give it a
239241
star](../README.md#how-can-i-thank-you-for-writing-and-sharing-this-tutorial).
240242

241243
You may use this tutorial freely at your own risk. See

basics/answers.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,9 @@ isn't exactly like mine but it works just fine it's ok, and you can
411411
412412
***
413413
414-
If you like this tutorial, please [give it a
414+
If you have trouble with this tutorial please [tell me about
415+
it](../contact-me.md) and I'll make this tutorial better. If you
416+
like this tutorial, please [give it a
415417
star](../README.md#how-can-i-thank-you-for-writing-and-sharing-this-tutorial).
416418
417419
You may use this tutorial freely at your own risk. See

basics/classes.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,9 @@ print("You entered " + word + ".")
416416

417417
***
418418

419-
If you like this tutorial, please [give it a
419+
If you have trouble with this tutorial please [tell me about
420+
it](../contact-me.md) and I'll make this tutorial better. If you
421+
like this tutorial, please [give it a
420422
star](../README.md#how-can-i-thank-you-for-writing-and-sharing-this-tutorial).
421423

422424
You may use this tutorial freely at your own risk. See

basics/defining-functions.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,9 @@ Answers for the first, second and third exercise are
531531

532532
***
533533

534-
If you like this tutorial, please [give it a
534+
If you have trouble with this tutorial please [tell me about
535+
it](../contact-me.md) and I'll make this tutorial better. If you
536+
like this tutorial, please [give it a
535537
star](../README.md#how-can-i-thank-you-for-writing-and-sharing-this-tutorial).
536538

537539
You may use this tutorial freely at your own risk. See

0 commit comments

Comments
 (0)