Is there a Python equivalent to Ruby symbols?
If so then what is it?
If not then are we stuck with using strings as our keys in dictionaries only?
|
Is there a Python equivalent to Ruby symbols?
|
|||
|
No, python doesn't have a symbol type. However string literals are interned by default and other strings can be interned using the |
|||||||||||||||||||
|
|
As others have said, there is no symbol in Python, but strings work well. To avoid quoting strings as keys, use the dict() constructor syntax:
|
|||||
|
|
|||||||||||
|
d.binstead ofd['b'], you could just use an emptyclass D(object): passto create an instanced = D()to which you can then assign your values to attributes you make up, like sod.a=1andd.b=2and of course get their values like soprint(d.a + d.b). Not sure if that would be slower than a plain dictionary lookup like thed['b']in the answer. – FriendFX Mar 15 at 7:04