Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tags/dictcomps.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ They are also very useful for inverting the key value pairs of a dictionary that

Also like list comprehensions, you can add a conditional to it in order to filter out items you don't want.

For more information and examples, check [PEP 274](https://www.python.org/dev/peps/pep-0274/)
For more information and examples, check [PEP 274](https://www.python.org/dev/peps/pep-0274/).
3 changes: 2 additions & 1 deletion tags/foo.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ Python has its own metasyntactic variables, namely `spam`, and `eggs`. This is a

More information:
• [History of foobar](https://en.wikipedia.org/wiki/Foobar)
• [Monty Python sketch](https://en.wikipedia.org/wiki/Spam_%28Monty_Python%29)
• [Monty Python sketch](https://en.wikipedia.org/wiki/Spam_(Monty_Python))

2 changes: 1 addition & 1 deletion tags/param-arg.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ return n*n
print(square(5)) # 5 is the argument
```

Note that `5` is the argument passed to `square`, but `square(5)` in its entirety is the argument passed to `print`
Note that `5` is the argument passed to `square`, but `square(5)` in its entirety is the argument passed to `print`.