阅读Guido的博客“ Tail Recursion Elimination”后,我在玩耍时遇到此错误。
我很好奇嵌套字典是否存在非递归限制,并且确实收到错误消息,但仅在非常特殊的情况下使用IPython控制台。
如果降低xrange(100个有效),则没有错误。这里发生了什么?
thing = {}
thing2 = thing
for x in xrange(500):
thing2[x] = {}
thing2 = thing2[x]
thing
输出:
Traceback (most recent call last):
File "<ipython-input-83-0b6d347b01d4>", line 1, in <module>
thing
File "C:\Python27\lib\site-packages\IPython\core\displayhook.py", line 255, in __call__
self.log_output(format_dict)
File "C:\Python27\lib\site-packages\IPython\core\displayhook.py", line 227, in log_output
format_dict['text/plain']
KeyError: 'text/plain'
repr(thing)
Out[84]: '{0: {1: {2: {3: {4: ....{497: {498: {499: {}}}}}}}}'
最佳答案
绝对是IPython问题。如果尝试显示“事物”,它将失败(在Python3 / IPython 4中,出现另一条错误消息)。但是,它是完全有效的对象。
这(500万个级别)是可以的(尽管创建需要花费几秒钟):
thing = {}
thing2 = thing
for x in range(5000000):
thing2[x] = {}
thing2 = thing2[x]
thing;