I have enum and use the variables like myEnum.SomeNameA, myEnum.SomeNameB, etc. When I return one of these variables from a function, can I print their names (such as myEnum.SomeNameA) instead of the value they returned?
|
2
|
|
|||
|
|
|
Short answer: no. Long answer: this is possible with some ugly hacks using traceback, inspect and the like, but it's generally probably not recommended for production code. For example see:
Perhaps you can use a workaround to translate the value back to a name/representational string. If you post some more sample code and details about what you're wanting this for maybe we can provide more in-depth assistance. |
|||
|
|
|
|
There are two answers to this question: Yes and No. Can you do it? -- Yes (in most cases) Is it worth it? -- No (in most cases) How to do it:It depends on an implementation of enums. For example:
It doesn't matter whether there are 100 names refers to an integer whose name you'd like to find if you know enums class object and all they're names (or at least a unique prefix) in that class. For the example above as @batbrat suggested you can inspect '
In this case you even don't have to know all enum names. If enums implemented differently then you might need to use a different hack. There will be some solution in most cases e.g., see @Jay's answer. But it doesn't matter because.. Is it worth it?
|
||
|
|
|
|
On second thought: Since Python does not provide native Enum types, you should not ask for one, but instead use other, more powerful construct to build your program. Otherwise, the next step will invariably be "Why does Python not have a Since Enums are often used to define some kind of state, a much better approach is this: Create a base class that define all the abstract properties, attributes and methods belonging to a state. Then, for each state, derive a sub class that implements the specific behavior of this state. You can then pass around these classes (or maybe instances thereof) to handle the state and its hehaviour. If you use classes instead of instances (the Python way of a "singleton"), you can simply check for any given state (not that it should be necessary) by And of course, you can define a |
||
|
|
|
|
There is no such thing as a unique or original variable name http://www.amk.ca/quotations/python-quotes/page-8
|
||||
|
|
|
Just use the text you want to print as the value of the enum, as in
comparing strings for identity is almost as efficient in Python as is comparing interger values (this is due to the fact the strings are immutable as have a hash value) Of course there are esier way to create the enum in the first place:
Then, create you enumeration like this:
ans access the same way as above:
|
||||||||
|
|
|
Erlang has a concept called "atoms" -- they are similar to string constants or enumerations. Consider using a string constant as the value of your enum -- the same as the name of the enum. |
||
|
|
|
|
To add to the @Jay's answer, some concepts... Python "variables" are simply references to values. Each value occupies a given memory location (see id())
From the above, you may notice that the value "1" is present at the memory location 10052552. It is referred to 569 times in this instance of the interpreter.
Now, see that because yet another name is bound to this value, the reference count went up by one. Based on these facts, it is not realistic/possbile to tell what single variable name is pointing to a value. I think the best way to address your issue is to add a mapping and function to your enum reference back to a string name.
Please comment if you would like sample code. |
||||||||
|
|
|
You could store the canonical name as an attribute of the instance, and then assign it to a variable with the same name. This might work:
Regardless, it's not a particularly "Pythonic" thing to do. |
||
|
|
|
|
As far as I know, that will require some introspection. You can try using the inspect module. There are a few simple things you may want to try before that:
All that said, there aren't standard enumerations in Python. It would help to know how you are creating them. On second thoughts, you can maintain your variables as a dictionary in the enum, keyed by variable name and provide a method of the enumeration to find the right variable and print its name. This solution (keeping a dict) is bad because variable values aren't necessarily unique. Edit: |
|||
|
|
