Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Rosanna Tan
1,755 PointsHelp with DreamVacation challenge
Below is a class called DreamVacation that holds a location and list of activities. Create a @classmethod called rome that will return a new DreamVacation instance with cls() with the following arguments: location = 'Rome' and activities list = ['visit the Colosseum', 'Eat gelato']. Hint: The classmethod should take cls instead of self as an argument.
class DreamVacation: def init(self, location, activities): self.location = location self.activities = activities # insert your code here #my code @classmethod def rome(cls, location = 'Rome', activities = ['visit the Colosseum', 'Eat gelato']):
class DreamVacation:
def __init__(self, location, activities):
self.location = location
self.activities = activities
# insert your code here
@classmethod
def rome(cls, location = 'Rome', activities = ['visit the Colosseum', 'Eat gelato']):
1 Answer

Steven Parker
221,310 PointsThe "rome" method itself doesn't need to take arguments. But it should supply them when creating a new instance, and it needs to "return" that new instance.
Rosanna Tan
1,755 PointsRosanna Tan
1,755 Pointswould you mind sharing your code?
I adjusted mines but does not appear to work :(
@classmethod def rome(cls, location, activities list): return cls(location = 'Rome', activities list = ['visit the Colosseum', 'Eat gelato'])
Steven Parker
221,310 PointsSteven Parker
221,310 PointsAs I said before, the "rome" method should not take arguments (other than "cls").
And in the call, the 2nd parameter is just "activities", not "activities list".