File tree Expand file tree Collapse file tree 1 file changed +24
-23
lines changed Expand file tree Collapse file tree 1 file changed +24
-23
lines changed Original file line number Diff line number Diff line change 1
1
All patches are welcome. If you're ading a new example, please do create an issue before submitting a patch.
2
-
2
+ dcd
3
3
You can use the following template for adding a new example:
4
4
5
+ <pre >
6
+ ### Some fancy Title
7
+
8
+ ```py
9
+ # Setting up the code.
10
+ # Preparation for the magic...
5
11
```
6
- ### Some fancy Title
7
12
13
+ **Output (Python version):**
14
+ ```py
15
+ >>> triggering_statement
16
+ Probably unexpected output
17
+ ```
18
+ (Optional): One line describing the unexpected output.
19
+
20
+ **Note:** All the examples mentioned below are run on Python 3.5.2 interactive interpreter unless explicitly specified.
21
+
22
+
23
+ #### 💡 Explanation:
24
+ * Brief explanation of what's happening and why is it happening.
8
25
```py
9
- # Setting up the code.
10
- # Preparation for the magic...
26
+ Setting up examples for clarification (if necessary)
11
27
```
12
-
13
- ** Output (Python version):**
28
+ **Outupt:**
14
29
```py
15
- >> > triggering_statement
16
- Probably unexpected output
30
+ >>> trigger # some example that makes it easy to unveil the magic
31
+ # some justified output
17
32
```
18
- (Optional): One line describing the unexpected output.
19
-
20
- ** Note:** All the examples mentioned below are run on Python 3.5.2 interactive interpreter unless explicitly specified.
21
-
22
-
23
- #### 💡 Explanation:
24
- * Brief explanation of what's happening and why is it happening.
25
- ``` py
26
- Setting up examples for clarification (if necessary)
27
- ```
28
- ** Outupt:**
29
- ```py
30
- >> > trigger # some example that makes it easy to unveil the magic
31
- # some justified output
32
- ```
33
33
```
34
+ </pre >
You can’t perform that action at this time.
0 commit comments