
Lynn Collins
10,079 PointsPlease don't laugh at me.....I'm so upset! What do they mean by a missing space in line 11???
ef 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
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
1 Answer

Steven Parker
205,347 PointsThe challenge expects a blank line between the one where "args" is assigned and where "class_func" is defined.