

InterviewSolution
Saved Bookmarks
1. |
What are datatypes? What are pyton\'built-in core data types? |
Answer» python data typesBuilt-in Data TypesIn programming, data type is an important concept.Variables can store data of different types, and different types can do different things.Python has the following data types built-in by default, in these categories:Text Type:\tstrNumeric Types:\tint, float, complexSequence Types:\tlist, tuple, rangeMapping Type:\tdictSet Types:\tset, frozensetBoolean Type:\tboolBinary Types:\tbytes, bytearray, memoryview | |