How can I check if a Python object is a string (either regular or Unicode)?
|
|
To check if an object
because both To check if the type of
To check if
The above also work for Unicode strings if you replace However, you may not need to do explicit type checking at all. "Duck typing" may fit your needs. See http://docs.python.org/glossary.html#term-duck-typing. See also What’s the canonical way to check for type in python? |
||||
|
|
|
I might deal with this in the duck-typing style, like others mention. How do I know a string is really a string? well, obviously by converting it to a string!
If the arg is already a string or unicode type, real_word will hold its value unmodified. If the object passed implements a |
|||
|
|
|
You can test it by concatenating with an empty string:
|
|||
|
|