Типи даних¶
Модулі, описані в цьому розділі, надають різні спеціалізовані типи даних, такі як дати та час, масиви фіксованого типу, черги купи, двосторонні черги та перерахування.
Python also provides some built-in data types, in particular,
list, tuple, dict, frozendict,
set, and frozenset.
The str class is used to hold
Unicode strings, and the bytes and bytearray classes are used
to hold binary data.
У цьому розділі описано наступні модулі:
datetime— Базові типи дати і часуzoneinfo— IANA time zone supportcalendar— General calendar-related functionscollections— Container datatypescollections.abc— Abstract Base Classes for Containersheapq— Heap queue algorithmbisect— Array bisection algorithmarray— Efficient arrays of numeric valuesweakref— Weak referencestypes— Dynamic type creation and names for built-in typescopy— Shallow and deep copy operationspprint— Data pretty printerreprlib— Alternaterepr()implementationenum— Support for enumerationsgraphlib— Functionality to operate with graph-like structures