0% found this document useful (0 votes)
4 views2 pages

Python Data Types & Structures Guide

The document outlines various Python data types, including integers, floats, and complex numbers, as well as their representations in different numeral systems. It also describes key data structures such as lists, tuples, sets, and dictionaries, highlighting their properties like mutability, order, and uniqueness of elements. This serves as a foundational overview of Python's data handling capabilities.

Uploaded by

thankuu143
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views2 pages

Python Data Types & Structures Guide

The document outlines various Python data types, including integers, floats, and complex numbers, as well as their representations in different numeral systems. It also describes key data structures such as lists, tuples, sets, and dictionaries, highlighting their properties like mutability, order, and uniqueness of elements. This serves as a foundational overview of Python's data handling capabilities.

Uploaded by

thankuu143
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Python Data Types and Structures

Number

- int

- Decimal

- Binary

- Octal

- Hexadecimal

- float

- Exponential

- complex

- Real Number

- Imaginary Number

Data Structures

- List

- Ordered

- Mutable

- Allows Duplicates

- Tuple

- Ordered

- Immutable

- Allows Duplicates

- Set

- Unordered
- Mutable

- No Duplicates

- Dict

- Key-Value Pairs

- Unordered (ordered in Python 3.7+)

- Keys are Unique

You might also like