This commit is contained in:
2025-04-16 21:40:31 +08:00
commit bded38c54f
17 changed files with 1320 additions and 0 deletions

7
test.py Normal file
View File

@@ -0,0 +1,7 @@
from sympy import diff
from sympy import symbols
def func(x):
return x**4
x = symbols("x")
print(diff(func(x),x))