Skip to content

Commit a73044b

Browse files
committed
lambdas: follow PEP8
more PEP8-ification
1 parent 7954a08 commit a73044b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lambdas.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ normal functions and even behave like them.
1616

1717
.. code:: python
1818
19-
add = lambda x,y: x+y
19+
add = lambda x, y: x + y
2020
21-
print(add(3,5))
21+
print(add(3, 5))
2222
# Output: 8
2323
2424
Here are a few useful use cases for lambdas and just a few way in which

0 commit comments

Comments
 (0)