我刚刚遇到了在我看来是 python 中奇怪的字符串格式化行为。原来是由我不知道的回车符('\r')引起的。这是一个例子:
>>> text = 'hello\r'
>>> '(SUBJECT "%s")' % (text)
'(SUBJECT "hello\r")'
>>> print '(SUBJECT "%s")' % (text)
")UBJECT "hello
我在 C 中(在几台机器上)尝试了同样的事情作为健全性检查。
#include <stdio.h>
int main()
{
char *text = "hello\r";
printf("(SUBJECT \"%s\")\n", text);
return 0;
}
输出:
% ./a.out
")UBJECT "hello
这是期望的行为吗?如果是这样,有人可以解释发生了什么吗?