Limit of a Function
Nerd Cafe
Example 1
from sympy import symbols, limit
x = symbols('x')
expr = 3*x + 1
result = limit(expr, x, 2)
print(result)Example 2
Example 3
Example 4
Example 5
Example 6
Keywords
Last updated