Région de recherche :

Date :

https://www.w3schools.com › python › python_datatypes.asp

Python Data Types - W3Schools

Learn about the built-in data types in Python, such as text, numeric, sequence, mapping, set, boolean, binary and None. See how to get, set and specify the data type of variables with examples and exercises.

https://docs.python.org › 3 › library › stdtypes.html

Built-in Types — Python 3.12.6 documentation

Learn about the standard types that are built into the Python interpreter, such as numerics, sequences, mappings, classes, instances and exceptions. See how to create, compare, operate and convert objects of different types.

https://docs.python.org › 3 › library › datatypes.html

Data Types — Python 3.12.6 documentation

Learn about the built-in and specialized data types in Python, such as dict, list, set, frozenset, str, bytes, date, time, and more. See the modules, classes, functions, and examples for each data type.

https://www.programiz.com › python-programming › variables-datatypes

Python Data Types (With Examples) - Programiz

Learn about the different data types in Python, such as numeric, string, list, tuple, set and dictionary. See examples of how to create, access and modify variables of each data type.

https://realpython.com › python-data-types

Basic Data Types in Python: A Quick Exploration

Learn how to create and use integer, floating-point, complex, and Boolean values in Python. Also, explore string, byte, and character data types and their methods.

Basic Data Types in Python: A Quick Exploration

https://courspython.com › types.html

Principaux types de données — Cours Python

Python est un language à typage dynamique, ce qui signifie qu’il n’est pas nécessaire de déclarer les variables avant de pouvoir leur affecter une valeur. La valeur que l’on affecte possède un type qui dépend de la nature des données (nombre entier, nombre à virgule, chaîne de caractères, etc).

https://python.land › python-data-types

Python Data Types • Python Land Tutorial

Basic and advanced Python data types. We distinguish between basic types and more advanced data structures. The basic data types in Python store a single value, like a number or a piece of text. The basic data types in Python are: Integers; Floating point numbers; Complex numbers; Booleans; Strings; Next, we have the more advanced ...

Python Data Types • Python Land Tutorial

https://docs.python.org › 3 › tutorial › datastructures.html

5. Data Structures — Python 3.12.6 documentation

Learn about the list data type and its methods, list comprehensions, and how to use lists as queues. See examples of list operations, sorting, and comparison.

https://pynative.com › python-data-types

Python Data Types - PYnative

Learn about the different data types in Python, such as int, float, str, list, tuple, dict, set, and more. See examples, operations, and how to check the data type of a variable.

Python Data Types - PYnative

https://www.freecodecamp.org › news › how-to-use-data-types-in-python

How to Use Data Types in Python – Explained with Code Examples

Learn how to use data types in Python, a dynamically typed language that determines the type of variable according to the assigned value. See examples of numeric, sequence, mapping, set, none, and Boolean data types in Python.

How to Use Data Types in Python – Explained with Code Examples