KnowledgeBoat Logo
|

Robotics & Artificial Intelligence

What do you understand by data type? List names of Python built-in data types.

Getting Started

1 Like

Answer

A data type specifies the types of data that may be stored in variables as well as the actions that can be performed on them. The range of values that a variable may contain and the amount of memory required to store the value is also determined by the data type of the variable.

The built-in data types in Python are int, float, complex, bool, string, list, tuple, dictionary, and set.

Answered By

2 Likes


Related Questions