Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

“In Python, functions are first-class objects.” What do you infer from this?

Answer Posted / nashiinformaticssolutions

"In Python, functions are first-class objects" indicates that functions are handled just like any other object in Python. You could:

Give variables functions.
For instance, f = my_function


Give functions to other functions as arguments.
Some_function(my_function) is an example.

Functions that return from other functions
For instance, return my_function

Use data structures to store functions.
Functions_list = [func1, func2] is an example.

Because of this flexibility, functions can be employed in more potent and dynamic ways, including callbacks and higher-order functions.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is lambda used for in python?

1009


What is the use of python interpreter?

895


Is using eval in python a bad practice?

1114


What flask is and its benefits?

983


What are the other languages that support strongly for regular expressions?

947


How would you define a protected member in a python class ?

876


Is print a function in python?

875


What is difference between input and raw_input?

1096


What does the enum function in python do?

1157


Can we concat bytes to str?

955


What are different modes in file operations?

1094


What is syntax in python programming?

1093


Tell me what is flask & its benefits?

997


Is python 0 indexed?

862


Tell me how do you debug a program in python? Is it possible to step through python code?

851