В чем ошибка?
--------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-28-98624adf4253> in <module>
----> 1 players = [Player('Petrov', 'Igor', 29), Player('Vasilyev', 'Viktor', 30)]
TypeError: 'tuple' object is not callable
Python:
from collections import namedtuple
Player = ('Player', 'Surname Name Age')
players = [Player('Petrov', 'Igor', 29),
Player('Vasilyev', 'Viktor', 30)]
TypeError Traceback (most recent call last)
<ipython-input-28-98624adf4253> in <module>
----> 1 players = [Player('Petrov', 'Igor', 29), Player('Vasilyev', 'Viktor', 30)]
TypeError: 'tuple' object is not callable
Последнее редактирование модератором: