Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialRobert Armstrong
4,941 PointsRegular Expressions in Python Players and Class Definitions Challenge...
I'm not sure what I'm doing wrong. I've got the first part of the challenge done, but I'm having trouble getting the class right.
import re
string = '''Love, Kenneth: 20
Chalkley, Andrew: 25
McFarland, Dave: 10
Kesten, Joy: 22
Stewart Pinchback, Pinckney Benton: 18'''
line = re.compile(r'^(?P<last_name>[-\w ]+),\s(?P<first_name>[-\w ]+)\:\s(?P<score>[0-9]+)$', re.X|re.M)
players = line.match(string)
class Player:
line = re.compile(r'^(?P<last_name>[-\w ]+),\s(?P<first_name>[-\w ]+)\:\s(?P<score>[0-9]+)$', re.X|re.M)
def __init__(self, inputString):
self.last_name = ''
self.first_name = ''
self.score = ''
self.players = line.match(inputString)
player = Player(string)
1 Answer
jcorum
71,830 PointsRobert, congrats on the first part. Here's a suggestion for the second:
class Player:
def __init__(self, last_name, first_name, score):
self.last_name = last_name
self.first_name = first_name
self.score = score
There's no need to repeat line in the class, and the init needs to have 4 parameters, rather than 2. Further, the purpose of the init is to provide values for the variables, so each needs to be set to the appropriate value being passed in.