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 Write Better Python Cleaner Code Function and Class Whitespace

starter.py

i still get a bummer .you have 5 errors in lines 3,10,12,15 what do i do to get the right white spacing

starter.py
def first_function(arg1):
    return 'arg1 is {}'.format(arg1)
                                                                          This line has blank space                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     

def second_function(arg1):
    return 'arg1 is {}'.format(arg1)


class MyClass:
                                                                          This line has blank space                                                                       
    args = [1, 2, 3]
                                                                          This line has blank space                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
    def class_func(self):
        return self.args
                                                                          This line has blank space                                             

[MOD: added ```python formatting -cf]

2 Answers

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

I've marked your original post where the trailing spaces are. Curiously, your second code post does not have trailing spaces.

To be sure the last line ends in a newline character, add a new line to the end of the file, then delete all blank lines at the bottom of the file. The hidden \n will remain.

Post back if you're still stuck. Good luck!!

def first_function(arg1):
    return 'arg1 is {}'.format(arg1)


def second_function(arg1):
    return 'arg1 is {}'.format(arg1)


class MyClass:

    args = [1, 2, 3]

    def class_func(self):
        return self.args

[MOD: added ```python formatting -cf]