mirror of
https://github.com/satwikkansal/wtfpython
synced 2025-07-04 20:38:06 +02:00
make the function *call* more visible (#104)
It is easy to overlook the () in that appending operation, I propose adding a short comment.
This commit is contained in:
parent
d7477885b8
commit
b0e7a816ec
1 changed files with 1 additions and 1 deletions
2
README.md
vendored
2
README.md
vendored
|
@ -555,7 +555,7 @@ for x in range(7):
|
|||
def some_func():
|
||||
return x
|
||||
funcs.append(some_func)
|
||||
results.append(some_func())
|
||||
results.append(some_func()) # note the function call here
|
||||
|
||||
funcs_results = [func() for func in funcs]
|
||||
```
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue