Files
CalWay_Python/test.py
2025-04-16 21:40:31 +08:00

7 lines
118 B
Python

from sympy import diff
from sympy import symbols
def func(x):
return x**4
x = symbols("x")
print(diff(func(x),x))