Skip to content

Commit

Permalink
Change the position of the notes.
Browse files Browse the repository at this point in the history
* 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 #17
  • Loading branch information
satwikkansal committed Sep 1, 2017
1 parent 046663e commit 82bbded
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,8 @@ So, here ya go...

# Structure of the Examples

**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.

All the examples are structured like below:

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

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


#### 💡 Explanation:

* Brief explanation of what's happening and why is it happening.
```py
Setting up examples for clarification (if necessary)
Expand Down Expand Up @@ -151,6 +152,7 @@ Now, just run `wtfpython` at the command line which will open this collection in

### Skipping lines?

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

Wut?

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

#### Explanation

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

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

---

### Well, something is fishy...
Expand Down

0 comments on commit 82bbded

Please sign in to comment.