Discover the answers you need at Westonci.ca, where experts provide clear and concise information on various topics. Get quick and reliable solutions to your questions from a community of seasoned experts on our user-friendly platform. Experience the ease of finding precise answers to your questions from a knowledgeable community of experts.

15. Which keyword used in python language?
A. finally
B. lambda
C. while
D. All of Above


Sagot :

Final answer:

The keyword 'lambda' is used in Python to create anonymous functions efficiently.


Explanation:

The keyword used in Python language is lambda.

The lambda keyword in Python is used to create anonymous functions, also known as lambda functions. These functions are small and can have any number of arguments but only one expression. An example of using lambda in Python could be: add = lambda x, y: x + y, defining a function that adds two numbers.

Using the lambda keyword allows for a more concise way of writing functions in Python, especially when functions are needed for a short period of time or as arguments to higher-order functions.


Learn more about Python keywords here:

https://brainly.com/question/33318092