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

basics/dicts.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,9 @@ Running the program might look like this:
299299

300300
***
301301

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

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

basics/exceptions.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,9 @@ except OSError:
458458

459459
***
460460

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

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

basics/files.md

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

366366
***
367367

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

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

basics/getting-started.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,9 @@ Powers are calculated before `*` and `/`, but after `()`.
213213

214214
***
215215

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

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

basics/handy-stuff-strings.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,9 @@ The answers are [here](answers.md#handy-stuff-strings).
429429

430430
***
431431

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

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

basics/if.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,9 @@ The answers are [here](answers.md#if-else-and-elif).
329329

330330
***
331331

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

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

basics/installing-python.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,9 @@ Now you should have Python installed, and you should be able run it.
109109

110110
***
111111

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

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

basics/larger-program.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,9 @@ something else when it's imported.
212212

213213
***
214214

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

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

basics/lists-and-tuples.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,9 @@ The answers are [here](answers.md#lists-and-tuples).
347347

348348
***
349349

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

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

basics/loops.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,9 @@ The answers are [here](answers.md#loops)
463463

464464
***
465465

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

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

basics/modules.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,9 @@ section at the bottom.
487487

488488
***
489489

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

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

basics/the-way-of-the-program.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,9 @@ learned everything.
3838

3939
***
4040

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

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

basics/trey-hunner-zip-and-enumerate.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,9 @@ The answers are [here](answers.md).
135135
136136
***
137137
138-
If you like this tutorial, please [give it a
138+
If you have trouble with this tutorial please [tell me about
139+
it](../contact-me.md) and I'll make this tutorial better. If you
140+
like this tutorial, please [give it a
139141
star](../README.md#how-can-i-thank-you-for-writing-and-sharing-this-tutorial).
140142
141143
You may use this tutorial freely at your own risk. See

basics/using-functions.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,9 @@ should work normally.
228228

229229
***
230230

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

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

basics/variables.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,9 @@ what you are doing. We'll learn more about it later.
272272

273273
***
274274

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

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

basics/what-is-programming.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,9 @@ rest of this tutorial only if you don't understand the code.
155155

156156
***
157157

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

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

basics/what-is-true.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,9 @@ if value is None: ... # best
213213

214214
***
215215

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

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

contact-me.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,12 @@ it, there are a few ways to contact me:
1818

1919
***
2020

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

2426
You may use this tutorial freely at your own risk. See
25-
[LICENSE](LICENSE).
27+
[LICENSE](./LICENSE).
2628

27-
[List of contents](README.md#list-of-contents)
29+
[List of contents](./README.md#list-of-contents)

editor-setup.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -139,10 +139,12 @@ about it here, [tell me](contact-me.md).
139139

140140
***
141141

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

145147
You may use this tutorial freely at your own risk. See
146-
[LICENSE](LICENSE).
148+
[LICENSE](./LICENSE).
147149

148-
[List of contents](README.md#list-of-contents)
150+
[List of contents](./README.md#list-of-contents)

getting-help.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,12 @@ help on IRC is much faster.
5353

5454
***
5555

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

5961
You may use this tutorial freely at your own risk. See
60-
[LICENSE](LICENSE).
62+
[LICENSE](./LICENSE).
6163

62-
[List of contents](README.md#list-of-contents)
64+
[List of contents](./README.md#list-of-contents)

0 commit comments

Comments
 (0)