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 trialTopher Knoll
3,572 PointsBummer: try again
I think whenever someone is rude to me on the street, I'm just going to start saying, "bummer: try again."
I do the code challenges like they're explained and I get no hints as to why it's wrong. It doesn't help that the instructions are vague. I'm not even sure how they want me to "set" the values in the class. Should I even make a loop?
import re
string = '''Love, Kenneth: 20
Chalkley, Andrew: 25
McFarland, Dave: 10
Kesten, Joy: 22
Stewart Pinchback, Pinckney Benton: 18'''
players = re.compile(r"""
^(?P<last_name>[\w ]*),[\s]
(?P<first_name>[\w ]*):[\s]
(?P<score>[\d]{2})$
""", re.X | re.M)
class Player:
def __init__(self, last_name, first_name, score):
for match in players.finditer(string):
self.last_name = match.groupdict('last_name')
self.first_name = match.groupdict('first_name')
self.score = match.groupdict('score')
1 Answer
Steven Parker
231,236 PointsTask 1 specifically asks for a "re.search()
or re.match()
", but this code has a "re.compile" instead. When you fix it, remember to include the "string" as an argument.
Then in the new class, you won't need a loop or any fancy regex references. Just simply assign the attributes from the arguments.