Basically I wanna do:
obj = 'str'
type ( obj ) == string
I tried:
type ( obj ) == type ( string )
and didn't work.
EDIT: Thanks. Also what about the other types? Like there was NoneType that I couldn't replicate.
|
Basically I wanna do:
I tried:
and didn't work. EDIT: Thanks. Also what about the other types? Like there was NoneType that I couldn't replicate.
| ||||
|
feedback
|
In your case, You may also want to read this: http://www.canonical.org/~kragen/isinstance/ | |||||||||||||||
feedback
|
|
but, keep in mind: if it looks like a duck, and if it sounds like a duck, it is a duck. EDIT: For the None type, you can simply do:
| |||||
feedback
|
|
First, avoid all type comparisons. They're very, very rarely necessary. Sometimes, they help to check parameter types in a function -- even that's rare. Wrong type data will raise an exception, and that's all you'll ever need. All of the basic conversion functions will map as equal to the type function.
There are a few other cases.
None, BTW, never needs any of this kind of type checking. None is the only instance of NoneType. The None object is a Singleton. Just check for None
BTW, do not use the above in general. Use ordinary exceptions and Python's own natural polymorphism. | |||
|
feedback
|
|
For other types, check out the types module:
P.S. Typechecking is a bad idea. | ||||
|
feedback
|
|
You can always use the
Often there are better ways of doing that, particularly with any recent python. But if you only want to remember one thing, you can remember that. In this case, the better ways would be:
Note the last case: there is only one instance of Finally, as fengshaun points out, type checking in python is not always a good idea. It's more pythonic to just use the value as though it is the type you expect, and catch (or allow to propagate) exceptions that result from it. | |||||
feedback
|
|
It is because you have to write
type accepts an instance and returns its type. In this case you have to compare two instances' types. If you need to do preemptive checking, it is better if you check for a supported interface than the type. The type does not really tell you much, apart of the fact that your code want an instance of a specific type, regardless of the fact that you could have another instance of a completely different type which would be perfectly fine because it implements the same interface. For example, suppose you have this code
Now, suppose you say: I want this code to accept only a tuple.
This is reducing the reusability of this routine. It won't work if you pass a list, or a string, or a numpy.array. Something better would be
but there's no point in doing it: parameter[0] will raise an exception if the protocol is not satisfied anyway... this of course unless you want to prevent side effects or having to recover from calls that you could invoke before failing. (Stupid) example, just to make the point:
in this case, your code will raise an exception before running the system() call. Without interface checks, you would have removed the file, and then raised the exception. | ||||
|
feedback
|
|
I use For instance, if I want to check something is an array:
string check:
If you want to check against None, use is
| |||||||||||
feedback
|
|
i think this should do it
| |||||||||||
feedback
|
|
Type doesn't work on certain classes. If you're not sure of the object's type use the
Also see this article - http://www.siafoo.net/article/56 | ||||
|
feedback
|
|
You're very close!
Alternatively:
Note, in Python 2, if | |||||||
feedback
|