integral and differential in python
xxxxxxxxxx
from sympy import *
# Define the function to be integrated
x = symbols('x')
f = x**2 + 3*x + 2
# Perform the integration
integral = integrate(f, x)
print("The integral of the function is: ", integral)
# Perform the differentiation
derivative = diff(f, x)
print("The derivative of the function is: ", derivative)