The important feature of python function?
-
def
-
lambda
-
filter
-
tokens
-
Options 1,2 and 3
E
Correct answer
Explanation
The question asks about important features of Python functions. def is the keyword for defining named functions, lambda creates anonymous functions, and filter() is a built-in function that applies a function to filter sequences. All three are fundamental to Python's functional programming capabilities. tokens is not a special function feature.