是否可以在 python 中循环遍历运算符(大于/小于)?

我希望能够遍历关系运算符。我有以下代码工作:


TP = df[(df.Truth == 1) & eval(df.age >= cutoff)]

我还有几行,其中真值和关系运算符不同,但其他一切都相同。我尝试创建一个列表并使用 eval 函数,但我知道这是错误的,因为我什至无法克服语法错误。


truths = [[1,'>='],[0,'>='],[1,'<'],[0,'<']]

for truth in truths:

     truth_val = truth[0]

     operator = truth[1]

     TP = df[(df.Truth == truth) & eval(df.age operator cutoff)]

我如何着手循环关系运算符而不是让 python 将其作为字符串而是作为实际运算符?先感谢您!!!


ABOUTYOU
浏览 142回答 3
3回答

慕慕森

如果你想要实际的操作员,那么你应该使用operator库:import operator as op那么你的代码应该是这样的:truths = [[1, op.ge], [0, op.ge], [1, op.lt], [0, op.lt]]for truth in truths:&nbsp; truth_val = truth[0]&nbsp; operator = truth[1]&nbsp; TP = df[(df.Truth == truth) & operator(df.age, cutoff)]eval这是最安全的解决方案,强烈不鼓励所有基于的解决方案,在运行时评估字符串是一个潜在的安全问题。

动漫人物

你能试一下吗truths = [[1,'>='],[0,'>='],[1,'<'],[0,'<']]for truth in truths:&nbsp; &nbsp; &nbsp;truth_val = truth[0]&nbsp; &nbsp; &nbsp;operator = truth[1]&nbsp; &nbsp; &nbsp;TP = df[(df.Truth == truth) & eval("df.age"+ operator + cutoff)] # notice cutoff here should be string

catspeake

您需要提供eval()一个字符串:truths = [[1,'>='],[0,'>='],[1,'<'],[0,'<']]for truth in truths:&nbsp; &nbsp; &nbsp;truth_val = truth[0]&nbsp; &nbsp; &nbsp;operator = truth[1]&nbsp; &nbsp; &nbsp;print(eval(f"{df.age}{operator}{cutoff}"))
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python