Skip to content

Commit 795bef9

Browse files
committed
Merge pull request yasoob#4 from phihag/patch-4
lambdas: follow PEP8
2 parents d07341e + a73044b commit 795bef9

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)