Py3o Data Types¶
Integer¶
See also
Py3oInteger
Configuration Keys¶
- digit_separator
- The string used to separate digits in the number’s string representation.
- digit_format (default: 3)
- The interval between each digit separator.
Float¶
See also
Py3oFloat
Configuration Keys¶
- digit_separator
- The string used to separate digits in the integer part of the number’s string representation.
- digit_format (default: 3)
- The interval between each digit separator.
- decimal_separator (default: .)
- The string used to separate the integer part from the decimal part.
Date¶
See also
Py3oDate
Time¶
See also
Py3oTime
Datetime¶
See also
Py3oDatetime
Configuration Keys¶
- datetime_format
- The Python datetime format string that corresponds to the string
representation of the datetime.
If not defined and date_format and time_format are present, datetime_format
will be deduced from them, separated by a space. If they are undefined
as well, the default format %Y-%m-%d %H:%M:%S will be used.
For more information, see the documentation for
datetime.