For my program I have a lot of places where an object can be either a string or a list containing strings and other similar lists. These are generally read from a JSON file. They both need to be treated differently. Right now, I am just using isinstance, but that does not feel like the most pythonic way of doing it, so does anyone have a better way of doing it?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
No need to import modules, Python 2.x:
Python 3.x:
From PEP008:
|
|||||||||||||||
|
|
Since Python3 no longer has
as that is compatible with both Python2 and Python3 |
||||
|
Using On Python>=2.3 a string may be a
From Python 3 only one string type exists, so instead of
|
||||
|
You can use types module:
|
|||||||||||
|