Let's say that I have a class:
class Hello():
    who = {they, you}
    how = {good, bad}
And with a function parameter I want to specify which attribute I want to see.
def choose(who_or_how):
    print(Hello.who_or_how) 
Is there a way for doing it?
