python%s字符串替换和"自我"?

时间:2016-02-29 20:45:11

标签: python repr string-substitution

在pyyaml doc中查看此代码,为什么"Dice(%s,%s)" % self有效?有两个%s但只有一个var self

>>> class Dice(tuple):
...     def __new__(cls, a, b):
...         return tuple.__new__(cls, [a, b])
...     def __repr__(self):
...         return "Dice(%s,%s)" % self

>>> print Dice(3,6)
Dice(3,6)

http://pyyaml.org/wiki/PyYAMLDocumentation#Constructorsrepresentersresolvers

1 个答案:

答案 0 :(得分:0)

Dice是来自tuple的派生类,它是长度为2的tuple

您可以看到例如

>>> print yaml.dump(Dice(3,6))

!!python/object/new:__main__.Dice
- !!python/tuple [3, 6]

所以在你的上下文中,它运行良好,它确实是长度为2的元组,因此可以解析使用的字符串。