我正在尝试为布尔表达式打印真值表。在这样做时,我偶然发现了以下内容:
>>> format(True, "") # shows True in a string representation, same as str(True)
'True'
>>> format(True, "^") # centers True in the middle of the output string
'1'
指定格式说明符后,format()
会将True
转换为1
。我知道bool
是int
的子类,因此True
评估为1
:
>>> format(True, "d") # shows True in a decimal format
'1'
但为什么在第一个例子中使用格式说明符会将'True'
更改为1
?
我转向docs for clarification。它唯一说的是:
一般惯例是空格式字符串(
""
)产生的结果与您在值上调用str()
的结果相同。非空格式字符串通常会修改结果。
因此,当您使用格式说明符时,字符串会被修改。但是,如果指定仅一个对齐运算符(例如True
),为什么从1
更改为^
?
答案 0 :(得分:9)
很棒的问题!我相信我有答案。这需要在C中挖掘Python源代码,所以请耐心等待。
首先,format(obj, format_spec)
只是obj.__format__(format_spec)
的语法糖。特别是在发生这种情况的地方,您必须在函数中查看abstract.c:
PyObject *
PyObject_Format(PyObject* obj, PyObject *format_spec)
{
PyObject *empty = NULL;
PyObject *result = NULL;
...
if (PyInstance_Check(obj)) {
/* We're an instance of a classic class */
HERE -> PyObject *bound_method = PyObject_GetAttrString(obj, "__format__");
if (bound_method != NULL) {
result = PyObject_CallFunctionObjArgs(bound_method,
format_spec,
NULL);
...
}
要查找确切的通话,我们必须查看intobject.c:
static PyObject *
int__format__(PyObject *self, PyObject *args)
{
PyObject *format_spec;
...
return _PyInt_FormatAdvanced(self,
^ PyBytes_AS_STRING(format_spec),
| PyBytes_GET_SIZE(format_spec));
LET'S FIND THIS
...
}
_PyInt_FormatAdvanced
实际上被定义为formatter_string.c中的一个宏,作为formatter.h中的函数:
static PyObject*
format_int_or_long(PyObject* obj,
STRINGLIB_CHAR *format_spec,
Py_ssize_t format_spec_len,
IntOrLongToString tostring)
{
PyObject *result = NULL;
PyObject *tmp = NULL;
InternalFormatSpec format;
/* check for the special case of zero length format spec, make
it equivalent to str(obj) */
if (format_spec_len == 0) {
result = STRINGLIB_TOSTR(obj); <- EXPLICIT CAST ALERT!
goto done;
}
... // Otherwise, format the object as if it were an integer
}
这就是你的答案。只需检查format_spec_len
是0
是否为obj
,如果是,请将str(True)
转换为字符串。众所周知,'True'
是{{1}},神秘已经过去了!