A programming language is said to support first-class functions. If it treats functions as first-class objects. Python supports the concept of First Class functions.
functions can be treated as object
functions can be passed as an argument to other functions
function can return another function
Comments