Is Python object-oriented or functional programming?
Answer Posted / glibwaresoftsolutions
Python is functional as well as object-oriented. By permitting the construction of classes and objects, encapsulation, inheritance, and polymorphism, it facilitates object-oriented programming, or OOP. Functional programming concepts like lambda expressions, list comprehensions, higher-order functions, and first-class functions are also supported by Python. Python is a multi-paradigm language because of its versatility, which allows developers to employ functional, OOP, or a combination of both approaches depending on the task.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are the different types of reuest in python?
What is the purpose of setup py?
Can we develop a site using python
What is raise keyword do in python exception handling?
What are the types of variables in python?
Why should we close files?
How does numpy arange work?
Explain about pdb module in python?
What is numpy array?
What is the output for the following code?
How do I debug an extension?
Is end a keyword in python?
Do you know what is the key difference between a list and the tuple?
Difference between python list comprehension vs. Map?
What is list comprehension? Give an example.