python 中是否有与 Linq.Expressions.Expression 等价的东西?
我希望能够像 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Python 提供对代码编译形式的完全访问。
原则上,您可以对其进行逆向工程以找出表达式,尽管这样做并非易事。 dis 模块可能会给你一些领先优势:
Python provides full access to the compiled form of code.
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: