Py学习  »  Python

Python:named tuple.\u source在Python 3.7中不工作

Pietro Marsella • 5 年前 • 1419 次点击  

我试过这个密码

from collections import namedtuple
t = namedtuple('t', 'a b c')
i = t(1,2,3)
print(i._source, t._source)

但是当我运行它时它说没有属性 _source (用于 t 因此 i ). 从3.6开始就被淘汰了吗?

Python社区是高质量的Python/Django开发社区
本文地址:http://www.python88.com/topic/51950
 
1419 次点击  
文章 [ 1 ]  |  最新文章 5 年前