Skip to content

Commit

Permalink
better end
Browse files Browse the repository at this point in the history
  • Loading branch information
Akuli committed Feb 6, 2017
1 parent 67c75e8 commit 0939225
Show file tree
Hide file tree
Showing 31 changed files with 117 additions and 54 deletions.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,12 @@ have helped me with it:

***

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

You may use this tutorial freely at your own risk. See
[LICENSE](LICENSE).
[LICENSE](./LICENSE).

[List of contents](README.md#list-of-contents)
[List of contents](./README.md#list-of-contents)
10 changes: 6 additions & 4 deletions TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,12 @@ This tutorial is not complete. It still needs:

***

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

You may use this tutorial freely at your own risk. See
[LICENSE](LICENSE).
[LICENSE](./LICENSE).

[List of contents](README.md#list-of-contents)
[List of contents](./README.md#list-of-contents)
4 changes: 3 additions & 1 deletion advanced/answers.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@

***

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

You may use this tutorial freely at your own risk. See
Expand Down
8 changes: 6 additions & 2 deletions advanced/datatypes.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ types can do a lot of the work for you.
> If it looks like a duck and quacks like a duck, it must be a duck.
Many things in this tutorial are not really something but they behave
like something. For example, we'll learn about many things that behave
like something. For example, we'll learn about many classes that behave
like dictionaries. They are not dictionaries, but we can use them just
like if they were dictionaries. This programming style is known as
**duck-typing**.
Expand Down Expand Up @@ -110,6 +110,8 @@ things we can do with sets:
{'Nitori', 'theelous3', 'go|dfish', 'RubyPinch'}
>>> a ^ b # names in a or b, but not both
{'RubyPinch', 'Nitori', 'go|dfish'}
>>> a - b # names in a but not in b
{'go|dfish', 'RubyPinch'}
>>>
```

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

***

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

You may use this tutorial freely at your own risk. See
Expand Down
4 changes: 3 additions & 1 deletion advanced/functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,9 @@ does, so using keyword-only arguments makes sense.

***

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

You may use this tutorial freely at your own risk. See
Expand Down
4 changes: 3 additions & 1 deletion advanced/iters.md
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,9 @@ does the same thing as our `count()`.

***

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

You may use this tutorial freely at your own risk. See
Expand Down
4 changes: 3 additions & 1 deletion advanced/magicmethods.md
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,9 @@ are not meant to be imported.

***

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

You may use this tutorial freely at your own risk. See
Expand Down
4 changes: 3 additions & 1 deletion basics/answers.md
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,9 @@ isn't exactly like mine but it works just fine it's ok, and you can
***
If you like this tutorial, please [give it a
If you have trouble with this tutorial please [tell me about
it](../contact-me.md) and I'll make this tutorial better. If you
like this tutorial, please [give it a
star](../README.md#how-can-i-thank-you-for-writing-and-sharing-this-tutorial).
You may use this tutorial freely at your own risk. See
Expand Down
4 changes: 3 additions & 1 deletion basics/classes.md
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,9 @@ print("You entered " + word + ".")

***

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

You may use this tutorial freely at your own risk. See
Expand Down
4 changes: 3 additions & 1 deletion basics/defining-functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,9 @@ Answers for the first, second and third exercise are

***

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

You may use this tutorial freely at your own risk. See
Expand Down
4 changes: 3 additions & 1 deletion basics/dicts.md
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,9 @@ Running the program might look like this:

***

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

You may use this tutorial freely at your own risk. See
Expand Down
4 changes: 3 additions & 1 deletion basics/exceptions.md
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,9 @@ except OSError:

***

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

You may use this tutorial freely at your own risk. See
Expand Down
4 changes: 3 additions & 1 deletion basics/files.md
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,9 @@ else:

***

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

You may use this tutorial freely at your own risk. See
Expand Down
4 changes: 3 additions & 1 deletion basics/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,9 @@ Powers are calculated before `*` and `/`, but after `()`.

***

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

You may use this tutorial freely at your own risk. See
Expand Down
4 changes: 3 additions & 1 deletion basics/handy-stuff-strings.md
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,9 @@ The answers are [here](answers.md#handy-stuff-strings).

***

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

You may use this tutorial freely at your own risk. See
Expand Down
4 changes: 3 additions & 1 deletion basics/if.md
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,9 @@ The answers are [here](answers.md#if-else-and-elif).

***

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

You may use this tutorial freely at your own risk. See
Expand Down
4 changes: 3 additions & 1 deletion basics/installing-python.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,9 @@ Now you should have Python installed, and you should be able run it.

***

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

You may use this tutorial freely at your own risk. See
Expand Down
4 changes: 3 additions & 1 deletion basics/larger-program.md
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,9 @@ something else when it's imported.

***

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

You may use this tutorial freely at your own risk. See
Expand Down
4 changes: 3 additions & 1 deletion basics/lists-and-tuples.md
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,9 @@ The answers are [here](answers.md#lists-and-tuples).

***

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

You may use this tutorial freely at your own risk. See
Expand Down
4 changes: 3 additions & 1 deletion basics/loops.md
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,9 @@ The answers are [here](answers.md#loops)

***

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

You may use this tutorial freely at your own risk. See
Expand Down
4 changes: 3 additions & 1 deletion basics/modules.md
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,9 @@ section at the bottom.

***

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

You may use this tutorial freely at your own risk. See
Expand Down
4 changes: 3 additions & 1 deletion basics/the-way-of-the-program.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ learned everything.

***

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

You may use this tutorial freely at your own risk. See
Expand Down
4 changes: 3 additions & 1 deletion basics/trey-hunner-zip-and-enumerate.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,9 @@ The answers are [here](answers.md).
***
If you like this tutorial, please [give it a
If you have trouble with this tutorial please [tell me about
it](../contact-me.md) and I'll make this tutorial better. If you
like this tutorial, please [give it a
star](../README.md#how-can-i-thank-you-for-writing-and-sharing-this-tutorial).
You may use this tutorial freely at your own risk. See
Expand Down
4 changes: 3 additions & 1 deletion basics/using-functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,9 @@ should work normally.

***

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

You may use this tutorial freely at your own risk. See
Expand Down
4 changes: 3 additions & 1 deletion basics/variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,9 @@ what you are doing. We'll learn more about it later.

***

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

You may use this tutorial freely at your own risk. See
Expand Down
4 changes: 3 additions & 1 deletion basics/what-is-programming.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,9 @@ rest of this tutorial only if you don't understand the code.

***

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

You may use this tutorial freely at your own risk. See
Expand Down
4 changes: 3 additions & 1 deletion basics/what-is-true.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,9 @@ if value is None: ... # best

***

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

You may use this tutorial freely at your own risk. See
Expand Down
10 changes: 6 additions & 4 deletions contact-me.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,12 @@ it, there are a few ways to contact me:

***

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

You may use this tutorial freely at your own risk. See
[LICENSE](LICENSE).
[LICENSE](./LICENSE).

[List of contents](README.md#list-of-contents)
[List of contents](./README.md#list-of-contents)
10 changes: 6 additions & 4 deletions editor-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,10 +139,12 @@ about it here, [tell me](contact-me.md).

***

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

You may use this tutorial freely at your own risk. See
[LICENSE](LICENSE).
[LICENSE](./LICENSE).

[List of contents](README.md#list-of-contents)
[List of contents](./README.md#list-of-contents)
10 changes: 6 additions & 4 deletions getting-help.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,12 @@ help on IRC is much faster.

***

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

You may use this tutorial freely at your own risk. See
[LICENSE](LICENSE).
[LICENSE](./LICENSE).

[List of contents](README.md#list-of-contents)
[List of contents](./README.md#list-of-contents)
Loading

0 comments on commit 0939225

Please sign in to comment.