Skip to content

Commit f1b9086

Browse files
authored
Update Lambdafunction.md
1 parent 2816c7b commit f1b9086

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Function/Lambdafunction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
### Lambda Function
44
- A Python lambda is just a Python function.But may be like a special type of function that have limited capabilities
55
- Lambda function is a small anonymous function.
6-
-lambda function can have any number of arguments but only one expression, which is evaluated and returned.
7-
- Normally we use the *def* keyword to define a function with a name. The *lambda* keyword is used to create anonymous functions.
6+
- lambda function can have any number of arguments but only one expression, which is evaluated and returned.
7+
- Normally we use the **def** keyword to define a function with a name. The *lambda* keyword is used to create anonymous functions.
88
- Lambda functions can accept zero or morearguments but only one expression.
99

1010
### Why Use Lambda Functions?

0 commit comments

Comments
 (0)