python 中是否有与 Linq.Expressions.Expression 等价的东西?

发布于 2024-11-03 02:32:40 字数 266 浏览 0 评论 0原文

我希望能够像 C# 一样从 lambda 函数中获取表达式并将其解析为其他内容?
C# 中的示例:

void Foo<T>(Expression<Func<T, bool>> expression
{
// ...
}

Foo<Baz>(someObj => someObj.HasBar);

lambda 运算符将被转换为可以检查的表达式。
python 中的等价物是什么?

I would like to be able to get the expression out of a lambda function much like C# does and parse it into something else?
Example in C#:

void Foo<T>(Expression<Func<T, bool>> expression
{
// ...
}

Foo<Baz>(someObj => someObj.HasBar);

The lambda operator will be traslated to an expression that could be inspected.
What's the equilivent in python?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

昇り龍 2024-11-10 02:32:40

Python 提供对代码编译形式的完全访问。

>>> f = lambda(x): 2*x
>>> f.func_code.co_code
'd\x00\x00|\x00\x00\x14S'
>>> 

原则上,您可以对其进行逆向工程以找出表达式,尽管这样做并非易事。 dis 模块可能会给你一些领先优势:

>>> import dis
>>> dis.dis(f)
  1           0 LOAD_CONST               0 (2)
              3 LOAD_FAST                0 (x)
              6 BINARY_MULTIPLY     
              7 RETURN_VALUE        
>>> dis.opname[ord(f.func_code.co_code[-2])]
'BINARY_MULTIPLY'
>>> dis.opname[ord(f.func_code.co_code[-1])]
'RETURN_VALUE'
>>> 

Python provides full access to the compiled form of code.

>>> f = lambda(x): 2*x
>>> f.func_code.co_code
'd\x00\x00|\x00\x00\x14S'
>>> 

You can, in principle, reverse engineer this to figure out the expression, though it's no mean feat to do so. The dis module might give you a bit of a head-start:

>>> import dis
>>> dis.dis(f)
  1           0 LOAD_CONST               0 (2)
              3 LOAD_FAST                0 (x)
              6 BINARY_MULTIPLY     
              7 RETURN_VALUE        
>>> dis.opname[ord(f.func_code.co_code[-2])]
'BINARY_MULTIPLY'
>>> dis.opname[ord(f.func_code.co_code[-1])]
'RETURN_VALUE'
>>> 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文