Skip to content

Commit 024553c

Browse files
committed
remove old file ends
1 parent 4258e16 commit 024553c

16 files changed

Lines changed: 0 additions & 94 deletions

classes.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -418,9 +418,3 @@ 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 [LICENSE](LICENSE).
425-
426-
[Back to the list of contents](README.md#list-of-contents)

defining-functions.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -541,9 +541,3 @@ 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 [LICENSE](LICENSE).
548-
549-
[Back to the list of contents](README.md#list-of-contents)

exceptions.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,3 @@ except OSError:
472472
sys.exit(1) # time to give up
473473
greet()
474474
```
475-
476-
***
477-
478-
You may use this tutorial at your own risk. See [LICENSE](LICENSE).

files.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -369,9 +369,3 @@ 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 [LICENSE](LICENSE).
376-
377-
[Back to the list of contents](README.md#list-of-contents)

getting-started.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -210,9 +210,3 @@ Powers are calculated before `*` and `/`, but after `()`.
210210
it will echo back the result.
211211
- Pieces of text starting with a `#` are comments.
212212
- `+`, `-`, `*` and `/` work in Python just like in math.
213-
214-
***
215-
216-
You may use this tutorial freely at your own risk. See [LICENSE](LICENSE).
217-
218-
[Back to the list of contents](README.md#list-of-contents)

handy-stuff-strings.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -396,9 +396,3 @@ ValueError: could not convert string to float: 'hello'
396396
- `len(string)` returns string's length.
397397
- We can use `str`, `int` and `float` to convert values to different
398398
types.
399-
400-
***
401-
402-
You may use this tutorial freely at your own risk. See [LICENSE](LICENSE).
403-
404-
[Back to the list of contents](README.md#list-of-contents)

if.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -332,9 +332,3 @@ else:
332332
```
333333
334334
The answers are [here](answers.md).
335-
336-
***
337-
338-
You may use this tutorial freely at your own risk. See [LICENSE](LICENSE).
339-
340-
[Back to the list of contents](README.md#list-of-contents)

installing-python.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,3 @@ some things might stop working. See
106106
## Summary
107107

108108
Now you should have Python installed, and you should be able run it.
109-
110-
***
111-
112-
You may use this tutorial freely at your own risk. See [LICENSE](LICENSE).
113-
114-
[Back to the list of contents](README.md#list-of-contents)

lists-and-tuples.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -307,9 +307,3 @@ if name in namelist:
307307
else:
308308
print("Sorry, I don't know who you are :(")
309309
```
310-
311-
***
312-
313-
You may use this tutorial freely at your own risk. See [LICENSE](LICENSE).
314-
315-
[Back to the list of contents](README.md#list-of-contents)

loops.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -318,9 +318,3 @@ of `stuff.copy()` and `stuff[:] = []` instead of `stuff.clear()`.
318318
until the user enters them correctly.
319319

320320
3. Can you limit the number of attempts to 3?
321-
322-
***
323-
324-
You may use this tutorial freely at your own risk. See [LICENSE](LICENSE).
325-
326-
[Back to the list of contents](README.md#list-of-contents)

0 commit comments

Comments
 (0)