我是一名刚学Python的小萌新,在计算一个积分(1+1/x)的x次方时程序老是运算超时,请问怎么解决from scipy import*x=symbols("x")A=integrate((1+1/x)**x,(x,1,8))print(A)