标签: python function sage
在mathematica中我可以写>变量[x ^ 2y + 2z]并获得{x,y,z}。 Sage有类似的功能吗?
答案 0 :(得分:1)
是
sage: var('x y z') (x, y, z) sage: expr = x^2*y + 2*z sage: expr.variables() (x, y, z)