What is Python's primary scripting paradigm?
- Functional
- Imperative
- Object-oriented
- Procedural
Python's primary scripting paradigm is object-oriented. However, it supports multiple paradigms like procedural and functional too.
Loading...
Related Quiz
- The _______ method is used to remove and return an arbitrary element from a set.
- Consider nested if statements in Python. What could be a potential drawback of having many levels of nested conditions?
- You are tasked with implementing a data structure that can insert, delete, and retrieve an element in constant time. Which data structure would you choose to implement this?
- To get a deep copy of nested lists, the copy module provides the _______ method.
- What keyword is used in Python to make a decision?