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 trial

Python

I don't know why I keep getting a SyntaxError...

import random

class Character: def_init_(self, name, **kwargs): self.name = name

    for key, value, in kwargs.items():
        setattr(self, key, value)

class Thief(Character): sneaky = True

def __init__(self, name, sneaky=True, **kwargs):
    super().__init__(name, **kwargs)
    self.sneaky = True    


def pickpocket(self):
    return self.sneaky and bool(random.randint(0, 1))

def hide(self, light_level):
    return self.sneaky and light_level < 10

1 Answer

Steven Parker
Steven Parker
243,266 Points

It's hard to be sure without code formatting, but it looks like there's a space missing between the first "def" and the "__init__".

For future questions, be sure to use Markdown formatting to preserve the indentation and special characters.

That was it thank you! Will do