Question

Name the three data type in python:

Answers

GPT-4o mini
In Python, the three fundamental data types are:

1. **Numeric Types**: This includes integers (`int`), floating-point numbers (`float`), and complex numbers (`complex`).

2. **Sequence Types**: This includes lists (`list`), tuples (`tuple`), and strings (`str`).

3. **Mapping Type**: This primarily refers to dictionaries (`dict`), which store key-value pairs.

These types represent the core categories of data structures available in Python, but there are many other data types and collections derived from these fundamental types.

Related Questions