Which type of these is not a Core Data Type in Python? Lakshya Tyagi on November 28, 2020 Comment your answer in comment Dictionary Tuples Class Lists
I am not sure but I believe it is
1. Class
because a class is not a method of storing data as much as modeling objects. Please correct me if I am wrong 😀.Class because classes are used to define custom data types. The others are built in types
First thing comes to mind is class. Because other are for to store data. Class is completely different.
3
None of the above?
Class is itself a data type on python. Hence you can dynamically create class definitions.
Yes you are correct
class
3
class is not any datatype. Data can be dict, tuple, list but never be a class.
A class
Class