So say I have this class:
class Person:
first_name = 'First Name'
last_name = 'Last Name'
phone_number = '000-000'
What I want to do is to get first_name
, last_name
and phone_number
, in the exact order.
Thank you.
So say I have this class:
class Person:
first_name = 'First Name'
last_name = 'Last Name'
phone_number = '000-000'
What I want to do is to get first_name
, last_name
and phone_number
, in the exact order.
Thank you.