Posts

Showing posts with the label frozenset

Python Data Types - Overview

The python language supports vast number of data Operations. To learn all these important and dynamic range of features we must learn all of its inbuilt data types. There are some major types of data we know numeric, text, sequential, sets, etc. To handle all these different types of data we have different data types specified in python. 1.     For Numeric type of data, we have a.     int b.     float c.      complex 2.    For text type of data, we have a.     str 3.    For sequences we have a.     list b.     tuple c.      range 4.    For data where mapping is required, we have a.     dict 5.    For Set types, we have a.     set and b.     frozenset 6.    For Boolean values, we have a.     bool 7.    Fo...