Skip to content

Commit 82bbded

Browse files
committed
Change the position of the notes.
* Moves the position of the information regarding the Python version so that it is not skipped by the readers. * Also moves the position of the instructions for reproducing the "Skipping lines" example to just below the output. Closes satwikkansal#17
1 parent 046663e commit 82bbded

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,8 @@ So, here ya go...
9898

9999
# Structure of the Examples
100100

101+
**Note:** All the examples mentioned below are tested on Python 3.5.2 interactive interpreter, and they should work for all the Python versions unless explicitly specified in the example description.
102+
101103
All the examples are structured like below:
102104

103105
### Some fancy Title
@@ -114,10 +116,9 @@ Probably unexpected output
114116
```
115117
(Optional): One line describing the unexpected output.
116118

117-
**Note:** All the examples mentioned below are run on Python 3.5.2 interactive interpreter unless explicitly specified.
118-
119119

120120
#### 💡 Explanation:
121+
121122
* Brief explanation of what's happening and why is it happening.
122123
```py
123124
Setting up examples for clarification (if necessary)
@@ -151,6 +152,7 @@ Now, just run `wtfpython` at the command line which will open this collection in
151152

152153
### Skipping lines?
153154

155+
**Output:**
154156
```py
155157
>>> value = 11
156158
>>> valuе = 32
@@ -160,6 +162,8 @@ Now, just run `wtfpython` at the command line which will open this collection in
160162

161163
Wut?
162164

165+
**Note:** The easiest way to reproduce this is to simply copy the statements from the above snippet and paste them into your file/shelll.
166+
163167
#### Explanation
164168

165169
Some Unicode characters look identical to ASCII ones, but are considered distinct by the interpreter.
@@ -171,8 +175,6 @@ Some Unicode characters look identical to ASCII ones, but are considered distinc
171175
42
172176
```
173177

174-
**Note:** The easiest way to reproduce this is to simply copy the statements from the above snippet and paste them into your file/shelll.
175-
176178
---
177179

178180
### Well, something is fishy...

0 commit comments

Comments
 (0)