You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-3Lines changed: 9 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -6,12 +6,16 @@ No tutorial is good for everyone. This one is aimed at people with no programmin
6
6
7
7
This tutorial uses Python 3. Python 2 is not under active development anymore, and more and more projects are moving to Python 3. Currently there are a few packages that don't support Python 3 that well at the time of writing this (such as twisted), but if you haven't programmed yet Python 3 is a great choice.
8
8
9
-
In this tutorial (and in most other tutorials) it's completely fine to simply read nothing but the example code, then come back and read the explanation for it if you don't fully understand it. There's nothing wrong with not reading every word in the documentation when all you need is the example code.
10
-
11
9
This tutorial includes lots of footnotes _[*]_. They are for people who want to know more about something in more detail and for people who would otherwise complain about how my tutorial is wrong about some things. There's often links to awesome resources such as tutorials and videos. If you've finished reading my tutorial and doing the exercises I recommend reading the footnotes and other places they point to.
12
10
13
11
_[*] Footnotes are like this._
14
-
12
+
13
+
To learn as much as possible from this tutorial, I recommend following these steps for all code examples in this tutorial. However, it's OK to skip these if you fully understand the example.
14
+
15
+
- Read the example and try it out yourself.
16
+
- If you don't fully understand why the example works like it does, read the explanation for it. Of course, you can read it anyway :)
17
+
- Modify the example to do something else than it does.
18
+
15
19
Most importantly, when learning a programming language you need to **experiment fearlessly and try new things that you did not read from a tutorial**. It's almost impossible to break your computer accidentally with Python. 99% of the time typing something wrong will simply make an error message that tells you what's wrong, it will not destroy anything.
16
20
17
21
Here's a list of chapters in this tutorial:
@@ -20,3 +24,5 @@ Here's a list of chapters in this tutorial:
20
24
2.[Strings, variables, Booleans and None](2.md)
21
25
3.[Using functions and storing code in files](3.md)
22
26
4.[If, elif, else and while](4.md)
27
+
28
+
You are free to copy and redistribute this tutorial and its code examples with or without modifications. See [LICENSE.md](LICENSE.md) for more information.
0 commit comments