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

How to print all the values within a class method at ones (OOP)?

I have a class named 'phonebook' with an init method. The code below prints the lastname for Peter. Is there a way to print all the values for Peter at once, without having to call each variable ? thanks for any help.

class Phonebook:

    def __init__ (self, name, lastname, adress, phone):
        self.name =name
        self.lastname=lastname
        self.phone =phone
        self.adress = adress

Morten=Phonebook('Peter','Johnsen','grenn street 1','4506')
print(Morten.lastname)
#How can I print all the values for Morten at once? 

1 Answer

From this stack overflow

class Phonebook:

    def __init__ (self, name, lastname, adress, phone):
        self.name =name
        self.lastname=lastname
        self.phone =phone
        self.adress = adress

Morten=Phonebook('Peter','Johnsen','grenn street 1','4506')
d = Morten.__dict__
print(d)