This repository was archived by the owner on Apr 1, 2021. It is now read-only.
Conversation
67 tasks
python-all.md
Outdated
| @@ -0,0 +1,40 @@ | |||
| # Python all(iterable) | |||
|
|
|||
| `all()` is a built in function in Python 3, to check if all items of an [_iterable_](https://docs.python.org/3/glossary.html#term-iterable) is `True`. It takes one argument, `iterable`. | |||
There was a problem hiding this comment.
"built in function in Python 3": Repetitive use of the word in.
Maybe change to: "built in function with Python 3".
Member
Author
There was a problem hiding this comment.
I think it would be better to do it like
built-in function in Python 3
The in before Python 3 is standard.
python-all.md
Outdated
| ``` | ||
| :rocket: [REPL It!](https://repl.it/CL9U/0) | ||
|
|
||
| [Documentation](https://docs.python.org/3/library/functions.html#all) |
|
Thanks @alayek |
Member
|
The filename is lowercase. |
waliahimanshu
pushed a commit
to waliahimanshu/wiki
that referenced
this pull request
May 5, 2016
* Add Python all * Fix built in * Add some more fixes
This pull request was closed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
In reference to
all()in #819