fork download
  1.  
Success #stdin #stdout 0.02s 9316KB
stdin
from sympy import *
x=symbols('x')
def der(n):
 y=log(sin(x))
 yn=diff(y,x,n)
 print(yn)
stdout
Standard output is empty