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 #107
A class is a data structure that can be used as a template for instances of that class by calling it, e.g. foo = Foo() . A type is a class that can be used as a template for additional classes by way of inheritance, e.g. class Foo(Bar): . As any class can be inherited in Python, all classes are types. (stackoverflow.com/questions/4162578/python-terminology-cl...)
Which one is true?
— The Python Quiz (@thepythonquiz) April 24, 2020
All types are classes but not all classes are types.
All classes are types but not all types are classes.
All classes are types and all types are classes.#python #python3 #pythonprogramming #learnpython
Question difficulty: ๐ต๐ต๐ต๐ต๐ต