Which type of these is not a Core Data Type in Python? #python #quiz #programming #challenge Lakshya Tyagi Nov 28, 2020 ・1 min read Python Daily Quiz (9 Part Series) 1 Which type of these is not a Core Data Type in Python? 2 Which method is used to return string in upper case? ... 7 more parts... 3 What will be the output of given code? 4 What will be the result of following code? 5 Correct syntax to output the type of variable or object? 6 Write the output of given python code. 7 What will be the output of given python code? 8 What will be the Output of given python code? 9 Which among them is used to create an object? Comment your answer in comment Dictionary Tuples Class Lists Discussion (11) Subscribe Image Upload image Templates Templates Editor guide Personal Moderator Create template Templates let you quickly answer FAQs or store snippets for re-use. Submit Preview Dismiss Collapse Expand Tomi Adenekan • Nov 28 '20 Dropdown menu Copy link Hide 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 😀. Collapse Expand Jorge Chiavaro • Nov 28 '20 Dropdown menu Copy link Hide Class because classes are used to define custom data types. The others are built in types Collapse Expand Matthew Stokes • Nov 28 '20 Dropdown menu Copy link Hide None of the above? Class is itself a data type on python. Hence you can dynamically create class definitions. Collapse Expand Lakshya Tyagi Author • Nov 28 '20 Dropdown menu Copy link Hide Yes you are correct Collapse Expand deepak • Nov 28 '20 Dropdown menu Copy link Hide 3 Collapse Expand toghrulAgayev • Nov 28 '20 Dropdown menu Copy link Hide First thing comes to mind is class. Because other are for to store data. Class is completely different. Collapse Expand ProMikeCoder2020 • Dec 9 '20 Dropdown menu Copy link Hide A class Collapse Expand Sambhav-Jindal-github • Dec 8 '20 Dropdown menu Copy link Hide class Collapse Expand Ranjeet Singh • Dec 4 '20 Dropdown menu Copy link Hide class is not any datatype. Data can be dict, tuple, list but never be a class. Collapse Expand Dibyadarshan Rath • Dec 3 '20 Dropdown menu Copy link Hide 3 Collapse Expand Bhaskar srinivas Kurukuri • Dec 12 '20 Dropdown menu Copy link Hide Class Code of Conduct • Report abuse
Discussion (11)
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
None of the above?
Class is itself a data type on python. Hence you can dynamically create class definitions.
Yes you are correct
3
First thing comes to mind is class. Because other are for to store data. Class is completely different.
A class
class
class is not any datatype. Data can be dict, tuple, list but never be a class.
3
Class