mirror of
https://github.com/satwikkansal/wtfpython
synced 2024-11-11 14:08:53 +01:00
1a79352cc3
* Link to CONTRIBUTING.md in the "Contributing" section * Add couple of lines in CONTRIBUTING.md
37 lines
995 B
Markdown
Vendored
37 lines
995 B
Markdown
Vendored
All patches are welcome. Feel free to even suggest some catch and funny titles for the existing Examples. I really want to make this collection as interesting to read as possible.
|
|
|
|
If you're adding a new example, please do create an issue to discuss it before submitting a patch.
|
|
|
|
You can use the following template for adding a new example:
|
|
|
|
<pre>
|
|
### Some fancy Title
|
|
|
|
```py
|
|
# Setting up the code.
|
|
# Preparation for the magic...
|
|
```
|
|
|
|
**Output (Python version):**
|
|
```py
|
|
>>> triggering_statement
|
|
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)
|
|
```
|
|
**Outupt:**
|
|
```py
|
|
>>> trigger # some example that makes it easy to unveil the magic
|
|
# some justified output
|
|
```
|
|
```
|
|
</pre>
|