为什么我会收到错误 SyntaxError:语法无效

为什么我会收到错误 SyntaxError:语法无效

这是我收到错误的 Python 代码...

    from scipy import *
    from matplotlib.pyplot import *
    x=arange(0.1,100,0.1)
    f=zeros(len(x))
    s=-1
    for n in range (1,10000):
        t=s*x/(x*x+n*n)
        f +=t
        s =-s
        if max(abs(t))< 1e-4
            break
    for xx in c_[x,f]:
        print "%f    %f" % (xx[0],xx[1])

答案1

等式中的括号z不平衡。

相关内容