I was reading the lexical definition for valid decimal string syntax in the documentation for decimal.Decimal and the following struck me as kind of odd:
nan ::= 'NaN' [digits] | 'sNaN' [digits]
This looked really strange to me, but apparently digits can be included after 'NaN' without any issues, but any character besides digits after 'NaN' raises InvalidOperation.
>>> Decimal('NaN10')
Decimal('NaN10')
So I have a few questions about this:
- What is the meaning of digits that are a part of
NaN? - How do instances of
NaNwith digits behave differently than a "normal"NaN? - Are there ways to obtain a
NaNwith digits besides initializing it that way? - Are there other places in Python besides the
Decimalclass whereNaNcan be followed by digits?
Thanks!