Question: from collections import namedtuple Player = ''' Your solution goes here ''' cam = Player('Cam Newton', '1', 'Quarterback', 'Carolina Panthers') lebron = Player('Lebron James', '23',
from collections import namedtuple
Player = ''' Your solution goes here '''
cam = Player('Cam Newton', '1', 'Quarterback', 'Carolina Panthers') lebron = Player('Lebron James', '23', 'Small forward', 'Los Angeles Lakers')
print(cam.name + '(#' + cam.number + ')' + ' is a ' + cam.position + ' for the ' + cam.team + '.') print(lebron.name + '(#' + lebron.number + ')' + ' is a ' + lebron.position + ' for the ' + lebron.team + '.')
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
