I have an object called Language:
class Language():
niceGreetings = ["Hello", "Hi"]
referToSelf = ["Me", "I"]
referToCollective = ["We", "Us"]
referToObject = ["The","It"]
travelPastTense = ["Went"]
directionNonSpecific = ["To", "From"]
I want to get a function that does this, basically:
<< listLists(Language)
>> ["niceGreetings", "referToSelf", "referToCollective", etc.]
It pretty much has to be compatible between Python 2 and 3, but I am a little flexible on that