The quiz where the difficulty automagically adapts to the player's Python knowledge
This is a question page. You can use this page to bookmark a question. Start a new quiz!
Question #213
A monkey patch is piece of Python code which extends or modifies other code at runtime. It It allows to modify or extend the behavior of libraries, modules, classes or methods at runtime without actually modifying the source code which can be useful in some situations. For instance:
from SomeOtherProduct.SomeModule import SomeClass
def speak(self):
return "ook ook eee eee eee!"
SomeClass.speak = speak
. (medium.com/@chipiga86/python-monkey-patching-like-a-boss-...)
What is a monkey patch?
— The Python Quiz (@thepythonquiz) December 16, 2020
An empty git patch.
A minor version of Python.
A piece of Python code which extends or modifies other code at runtime.
An object overloading methods from another object.#python #python3 #pythonprogramming #learnpython
Question difficulty: π΅π΅π΅π΅π΅