Tipe Data
*********

Modul yang dijelaskan dalam bab ini menyediakan berbagai tipe data
khusus seperti tanggal dan waktu, array tipe-tetap, antrian tumpukan,
antrian ujung ganda, dan enumerasi.

Python juga menyediakan beberapa tipe data bawaan, khususnya, "dict",
"list", "set" dan "frozenset", dan "tuple". Kelas "str" digunakan
untuk menyimpan string Unicode, dan "bytes" dan "bytearray" kelas
digunakan untuk menyimpan data biner.

Modul-modul berikut didokumentasikan dalam bab ini:

* "datetime" --- Basic date and time types

  * Aware and Naive Objects

  * Konstanta

  * Available Types

    * Common Properties

    * Determining if an Object is Aware or Naive

  * "timedelta" Objects

    * Examples of usage: "timedelta"

  * "date" Objects

    * Examples of Usage: "date"

  * "datetime" Objects

    * Examples of Usage: "datetime"

  * "time" Objects

    * Examples of Usage: "time"

  * "tzinfo" Objects

  * "timezone" Objects

  * "strftime()" and "strptime()" Behavior

    * "strftime()" and "strptime()" Format Codes

    * Technical Detail

* "zoneinfo" --- IANA time zone support

  * Using "ZoneInfo"

  * Data sources

    * Configuring the data sources

      * Compile-time configuration

      * Environment configuration

      * Runtime configuration

  * The "ZoneInfo" class

    * String representations

    * Pickle serialization

  * Functions

  * Globals

  * Exceptions and warnings

* "calendar" --- General calendar-related functions

  * Command-Line Usage

* "collections" --- Container datatypes

  * objek "ChainMap"

    * "ChainMap" Examples and Recipes

  * objek "Counter"

  * objek "deque"

    * "deque" Recipes

  * objek "defaultdict"

    * Contoh "defaultdict"

  * "namedtuple()" Factory Function for Tuples with Named Fields

  * objek "OrderedDict"

    * "OrderedDict" Examples and Recipes

  * objek "UserDict"

  * objek "UserList"

  * objek "UserString"

* "collections.abc" --- Abstract Base Classes for Containers

  * Collections Abstract Base Classes

  * Collections Abstract Base Classes -- Detailed Descriptions

  * Examples and Recipes

* "heapq" --- Heap queue algorithm

  * Basic Examples

  * Priority Queue Implementation Notes

  * Theory

* "bisect" --- Array bisection algorithm

  * Performance Notes

  * Searching Sorted Lists

  * Examples

* "array" --- Efficient arrays of numeric values

* "weakref" --- Weak references

  * Weak Reference Objects

  * Contoh

  * Finalizer Objects

  * Comparing finalizers with "__del__()" methods

* "types" --- Dynamic type creation and names for built-in types

  * Dynamic Type Creation

  * Standard Interpreter Types

  * Additional Utility Classes and Functions

  * Coroutine Utility Functions

* "copy" --- Shallow and deep copy operations

* "pprint" --- Data pretty printer

  * Functions

  * PrettyPrinter Objects

  * Contoh

* "reprlib" --- Alternate "repr()" implementation

  * Repr Objects

  * Subclassing Repr Objects

* "enum" --- Support for enumerations

  * Modul-Modul

  * Data Types

    * Supported "__dunder__" names

    * Supported "_sunder_" names

  * Utilities and Decorators

  * Notes

* "graphlib" --- Functionality to operate with graph-like structures

  * Exceptions
