I've got an Nonetype value x, it's generally a number, but could be None. I want to divide it by a number, but python says
TypeError: int() argument must be a string or a number, not 'NoneType'
How could I solve that
|
I've got an Nonetype value x, it's generally a number, but could be None. I want to divide it by a number, but python says
How could I solve that |
|||
|
In one of the comments, you say:
Well, if it's your code, figure out how you're getting If it's someone else's code, find out the conditions under which it gives |
|||
This will use 0 in the case when you provide any value that Python considers
This replaces only |
|||||
|
|
That TypeError only appears when you try to pass int() None (which is the only NoneType value, as far as I know). I would say that your real goal should not be to convert NoneType to int, but to figure out where/why you're getting None instead of a number as expected, and either fix it or handle the None properly. |
|||
|
|
|
A common "Pythonic" way to handle this kind of situation is known as EAFP for "It's easier to ask forgiveness than permission". Which usually means writing code that assumes everything is fine, but then wrapping it with a Here's that coding style applied to your problem:
Or perhaps the even simpler and slightly faster:
The inverse and more traditional approach is known as LBYL which stands for "Look before you leap" is what @Soviut and some of the others have suggested. For additional coverage of this topic see my answer and associated comments to the question "Determine whether a key is present in a Python dict" elsewhere on this site. One potential problem with EAFP is that it can hide the fact that something is wrong with some other part of your code or third-party module you're using, especially when the exceptions frequently occur (and therefore aren't really "exceptional" cases at all). |
||||
|
|
|
This can happen if you forget to return a value from a function: it then returns None. Look at all places where you are assigning to that variable, and see if one of them is a function call where the function lacks a return statement. |
|||||||
|
|
I was having the same problem using the python email functions. Below is the code I was trying to retrieve email subject into a variable. This works fine for most emails and the variable populates. If you receive an email from Yahoo or the like and the sender did no fill out the subject line Yahoo does not create a subject line in the email and you get a NoneType returned from the function. Martineau provided a correct answer as well as Soviut. IMO Soviut's answer is more concise from a programming stand point; not necessarily from a Python one. Here is some code to show the technique:
|
|||
|
|
|
You should check to make sure the value is not None before trying to perform any calculations on it:
Note: |
|||||||||
|
Noneis equivalent to 0 and just set the variable to that. – aaronasterling Oct 14 '10 at 5:00int(None)throws an exception because None can't be converted to an int. The answer to your question is it can't be done. You can substitute something, like 0, or 2771, or a pink elephant, but whatever you substitute, you still won't be able to convert None to an int. – snapshoe Oct 14 '10 at 5:17Noneto a pink elephant is no good either, unless you're working some number system that formally defines division of a number by a pink elephant (and you've written the code to back it up) – aaronasterling Oct 14 '10 at 5:22