- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我对 Python 2.7
中的 if not
语句有疑问。
我已经编写了一些代码并使用了 if not
语句。在我编写的代码的一部分中,我引用了一个函数,该函数包含一个 if not
语句来确定是否输入了可选关键字。
它工作正常,除非 0.0
是关键字的值。我理解这是因为 0
是被认为是“不”的事物之一。我的代码可能太长,无法发布,但这是一个类似的(尽管是简化的)示例:
def square(x=None):
if not x:
print "you have not entered x"
else:
y=x**2
return y
list=[1, 3, 0 ,9]
output=[]
for item in list:
y=square(item)
output.append(y)
print output
但是,在这种情况下,我得到了:
you have not entered x
[1, 9, None, 81]
我想去哪里:
[1, 9, 0, 81]
在上面的示例中,我可以使用列表推导式,但假设我想使用该函数并获得所需的输出,我该怎么做?
我的一个想法是:
def square(x=None):
if not x and not str(x).isdigit():
print "you have not entered x"
else:
y=x**2
return y
list=[1, 3, 0 ,9]
output=[]
for item in list:
y=square(item)
output.append(y)
print output
这可行,但似乎有点笨拙。如果有人有另一种很好的方式,我将非常感激。
最佳答案
你没看错。 not 0
(还有 not 0.0
)返回 True
在 Python
.可以做个简单的测试看看:
a = not 0
print(a)
Result: True
因此,问题得到了解释。这一行:
if not x:
必须改成别的东西。
有几种方法可以解决这个问题。我将列出它们,从我认为最好的解决方案到最后可能的解决方案:
处理所有可能的有效情况。
自从 square
应该自然期望一个排除复数的数字输入并且应该return
否则会出错,我认为最好的解决方案是使用 if not isinstance(x, numbers.Number) or isinstance(x, numbers.Complex):
进行评估
def square(x=None):
if not isinstance(x, numbers.Number) or isinstance(x, numbers.Complex): # this sums up every number type, with the exclusion of complex number
print ("you have not entered x")
else:
y=x**2
return y
list=[1, 3, 0 ,9]
output=[]
for item in list:
y=square(item)
output.append(y)
print (output)
numbers.Number是 抽象类来检查参数 x
是一个数字(感谢 Copperfield 指出这一点)。
摘自Python Standard Library Documentation解释只是你需要什么 - 除了复数:
class numbers.Number
The root of the numeric hierarchy. If you just want to check if an argument x is a number, without caring what kind, use isinstance(x, Number).
但是,您不希望输入是复数。因此,只需使用 or isinstance(x, numbers.Complex)
将其省略即可
This way, you write the
definition
ofsquare
exactly the way you want it. This solution, I think, is the best solution by the virtue of its comprehensiveness.
只处理您想要处理的数据类型。
如果你有一个有效的 inpug 数据类型列表,你也可以只列出你想要处理的那些特定数据类型。也就是说,您不想处理您指定的数据类型以外的情况。例子:
if not instance(x, int): #just handle int
if not instance(x, (int, float)): #just handle int and float
if not instance(x, (numbers.Integral, numbers.Rational)): #just handle integral and rational, not real or complex
You may change/extend the condition above easily for different data types that you want to include or to excluded - according to your need. This solution, I think, is the second best by the virtue of its customization for its validity checking.
(如 cat 所建议的那样,上面的代码以更 Pythonical 的方式完成)
不处理不可能的情况:您知道用户会不输入什么内容。
如果您知道 - 不是像第二种解决方案那样要处理的数据类型 - 而是用户将 不 放入的数据类型,那么可以更宽松地考虑一下,那么您可以有更宽松的条件像这样检查:
if not isinstance(x, numbers.Number): # this is ok, because the user would not put up complex number
This solution, I think, is the third best by the virtue of being one of the simplest yet powerful checking.
此解决方案的唯一缺点是您不处理复杂类型。因此,由于用户没有复数作为输入,因此只能通过实现。
仅处理可能导致错误的已知输入错误。
例如,如果您知道 x 总是 int
或 None
- 因此唯一可能的输入错误是None
- 然后我们可以简单地编写逻辑来避免y
仅在 x
时被评估是 None
像这样:
def square(x=None):
if x is None:
print ("you have not entered x")
else:
y=x**2
return y
list=[1, 3, 0 ,9]
output=[]
for item in list:
y=square(item)
output.append(y)
print (output)
This solution has the virtue of being the simplest.
...然而最危险被使用如果你不知道确切用户会为输入提供什么.否则,这个解决方案很好,也是最简单的。
你的解决方案,我觉得或多或少属于这一类。你知道用户会给出什么输入,用户不会给出什么。因此,使用此解决方案或您自己的解决方案:
if not x and not str(x).isdigit():
没问题,只是示例解决方案更简单
根据您的情况,您可以使用上述任何解决方案来获得:
[1, 9, 0, 81]
(旁注:为了便于阅读,我尝试将解决方案格式化为“规范解决方案”。这样,那些有相同问题并在未来访问此页面的人可能能够找到更全面、更易读的解决方案)
关于Python - 如果不是 0.0 的语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35572698/
创建一个“海盗对话”,可以选择左手或右手。我希望它对“左”和“右”的不同拼写做出积极的回答(正如您将在代码中看到的那样),但是,当我为所有非“右”或“左”的输入添加最终的“else”代码时,它给了我一
With 语句 对一个对象执行一系列的语句。 With object statements End With 参数 object 必需的部分
While...Wend 语句 当指定的条件为 True 时,执行一系列的语句。 While condition  ; Version [stat
所以我正在处理的代码有一个小问题。 while True: r = input("Line: ") n = r.split() if r == " ":
我有一个对象数组: var contacts = [ { "firstName": "Akira", "lastName": "Laine", "number"
int main() { int f=fun(); ... } int fun() { return 1; return 2; } 在上面的程序中,当从main函数中调用一个
我的项目中有很多 if 语句、嵌套 if 语句和 if-else 语句,我正在考虑将它们更改为 switch 语句。其中一些将具有嵌套的 switch 语句。我知道就编译而言,switch 语句通常更
Rem 语句 包含程序中的解释性注释。 Rem comment 或 ' comment comment 参数是需要包含的注释文本。在 Rem 关键字和 comment 之间应有一个空格。
ReDim 语句 在过程级中声明动态数组变量并分配或重新分配存储空间。 ReDim [Preserve] varname(subscripts) [, varname(subscripts)]
Randomize 语句 初始化随机数生成器。 Randomize [number] number 参数可以是任何有效的数值表达式。 说明 Randomize 使用 number 参数初始
Public 语句 定义公有变量并分配存储空间。在 Class 块中定义私有变量。 Public varname[([subscripts])][, varname[([subscripts])
Sub 语句 声明 Sub 过程的名称、参数以及构成其主体的代码。 [Public [Default]| Private] Sub name [( arglist )]
Set 语句 将对象引用赋给一个variable或property,或者将对象引用与事件关联。 Set objectvar = {objectexpression | New classname
我有这个代码块,有时第一个 if 语句先运行,有时第二个 if 语句先运行。我不确定为什么会这样,因为我认为 javascript 是同步的。 for (let i = 0; i < dataObje
这是一个 javascript 代码,我想把它写成这样:如果此人回答是,则回复“那很酷”,如果此人回答否,则回复“我会让你开心”,如果此人回答的问题包含"is"或“否”,请说“仅键入”是或否,没有任何
这是我的任务,我尝试仅使用简短的 if 语句来完成此任务,我得到的唯一错误是使用“(0.5<=ratio<2 )”,除此之外,构造正确吗? Scanner scn = new Scanner(
有没有办法在 select 语句中使用 if 语句? 我不能在这个中使用 Case 语句。实际上我正在使用 iReport 并且我有一个参数。我想要做的是,如果用户没有输入某个参数,它将选择所有实例。
这个问题在这里已经有了答案: 关闭 11 年前。 Possible Duplicate: If vs. Switch Speed 我将以 C++ 为例,但我要问的问题不是针对特定语言的。我的意思是一
Property Set 语句 在 Class 块中,声明名称、参数和代码,这些构成了将引用设置到对象的 Property 过程的主体。 [Public | Private] Pro
Property Let 语句 在 Class 块中,声明名称、参数和代码等,它们构成了赋值(设置)的 Property 过程的主体。 [Public | Private] Prop
我是一名优秀的程序员,十分优秀!