Skip to content

Commit 6e0f3da

Browse files
committed
running scripts and cleaning up
1 parent fd5d05e commit 6e0f3da

12 files changed

+25
-12
lines changed

advanced/datatypes.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ like if they were dictionaries. This programming style is known as
2121
## Sets
2222

2323
Let's say we have a program that keeps track of peoples' names. We can
24-
store the names in [a list](../basics/lists.md), and adding a new name
25-
is easy as appending to that list. Lists remember their order and it's
26-
possible to add the same thing multiple times.
24+
store the names in [a list](../basics/lists-and-tuples.md), and adding a
25+
new name is easy as appending to that list. Lists remember their order
26+
and it's possible to add the same thing multiple times.
2727

2828
```python
2929
>>> names = ['wub_wub', 'theelous3', 'RubyPinch', 'go|dfish', 'Nitori']

basics/classes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,5 +424,5 @@ star](../README.md#how-can-i-thank-you-for-writing-and-sharing-this-tutorial).
424424
You may use this tutorial freely at your own risk. See
425425
[LICENSE](../LICENSE).
426426

427-
[Previous](modules.md) | [Next](../advanced/datatypes.md) |
427+
[Previous](exceptions.md) | [Next](../advanced/datatypes.md) |
428428
[List of contents](../README.md#basics)

basics/editor-setup.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,3 +232,16 @@ you need to keep in mind when reading the rest of this tutorial:
232232
This probably felt like a lot of work, but don't worry, there will be no
233233
more things like this in the future. Now we have installed and set up
234234
all the tools we need and we can continue learning Python.
235+
236+
***
237+
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
241+
star](../README.md#how-can-i-thank-you-for-writing-and-sharing-this-tutorial).
242+
243+
You may use this tutorial freely at your own risk. See
244+
[LICENSE](../LICENSE).
245+
246+
[Previous](using-functions.md) | [Next](if.md) |
247+
[List of contents](../README.md#basics)

basics/exceptions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,5 +466,5 @@ star](../README.md#how-can-i-thank-you-for-writing-and-sharing-this-tutorial).
466466
You may use this tutorial freely at your own risk. See
467467
[LICENSE](../LICENSE).
468468

469-
[Previous](files.md) | [Next](modules.md) |
469+
[Previous](modules.md) | [Next](classes.md) |
470470
[List of contents](../README.md#basics)

basics/files.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,5 +373,5 @@ star](../README.md#how-can-i-thank-you-for-writing-and-sharing-this-tutorial).
373373
You may use this tutorial freely at your own risk. See
374374
[LICENSE](../LICENSE).
375375

376-
[Previous](what-is-true.md) | [Next](exceptions.md) |
376+
[Previous](what-is-true.md) | [Next](modules.md) |
377377
[List of contents](../README.md#basics)

basics/if.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,5 +271,5 @@ star](../README.md#how-can-i-thank-you-for-writing-and-sharing-this-tutorial).
271271
You may use this tutorial freely at your own risk. See
272272
[LICENSE](../LICENSE).
273273

274-
[Previous](using-functions.md) | [Next](handy-stuff-strings.md) |
274+
[Previous](editor-setup.md) | [Next](handy-stuff-strings.md) |
275275
[List of contents](../README.md#basics)

basics/modules.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Modules
22

3-
Let's say we want to generate a random number between 1 and
4-
3. The random module is a really easy way to do this:
3+
Let's say we want to generate a random number between 1 and 3.
4+
The random module is a really easy way to do this:
55

66
```python
77
>>> import random
@@ -492,5 +492,5 @@ star](../README.md#how-can-i-thank-you-for-writing-and-sharing-this-tutorial).
492492
You may use this tutorial freely at your own risk. See
493493
[LICENSE](../LICENSE).
494494

495-
[Previous](exceptions.md) | [Next](classes.md) |
495+
[Previous](files.md) | [Next](exceptions.md) |
496496
[List of contents](../README.md#basics)

basics/using-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,5 +236,5 @@ star](../README.md#how-can-i-thank-you-for-writing-and-sharing-this-tutorial).
236236
You may use this tutorial freely at your own risk. See
237237
[LICENSE](../LICENSE).
238238

239-
[Previous](variables.md) | [Next](if.md) |
239+
[Previous](variables.md) | [Next](editor-setup.md) |
240240
[List of contents](../README.md#basics)

common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
import shutil
4040

4141

42-
_LINK_REGEX = r'\[(.*?)\]\((.*?)\)'
42+
_LINK_REGEX = r'!?\[(.*?)\]\((.*?)\)'
4343

4444

4545
def find_links(file):

images/powershell.png

32.3 KB
Loading

images/py-exe.png

97.1 KB
Loading

images/terminal.png

761 KB
Loading

0 commit comments

Comments
 (0)