codeGK
Code it ALL
Python Data Types - CodeGK
♦ Python Data Types

♣ About Python Data Types

Data Types are fundamentally classified based on the amount of memory for each Data Type.
Each Data Type has the capability of holding a different type of entity.
Some common occurring Data Types are int, float, string.

♣ Data Types in PYTHON

Python has numerous Built-IN Data Types.
Table Info
Data TypeDescription
strUsed to store textual value
intUsed to store Natural Numbers
floatUsed to store Real Numbers
complexUsed to store Complex Numbers
listUsed to store sequence of Data Types(same type or different type) which can be Modified
tupleUsed to store sequence of Data Types(same type or different type) which is Non-Changeable
rangeUsed to produce Rande of values
dictUsed to store values which have key assosciated with them
frozenset
boolUsed to store True(1) or False(0)
bytesUsed to store string in Encode Form
bytearrayMultiple bytes can be stored
memoryviewMemory can be viewed
Prev_LessonNext_Lesson
Python Data Types