Multiple choice technology programming languages

The important feature of python function?

  1. def

  2. lambda

  3. filter

  4. tokens

  5. Options 1,2 and 3

Reveal answer Fill a bubble to check yourself
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.