I have this simple Python code
class Person:
 name = ""
 surname = ""
 age = ""
def __init__(self):
  arr = #I want something like this ['name', 'surname', 'age']
How do I achieve putting that variables in order that I want (['name', 'surname', 'age']) to array? Without "initializing" them first with "self"? Thanks.
Edit: I need them in exact order how I defined them, not alphabetical order.
 
    