标签: sympy
在很多情况下,您更喜欢sinc(x)而不是sin(x)/ x。有没有办法用sinc(x)代替sin(x)/ x?
from sympy import * x=symbols('x') print(sin(x)/x)