Discuss / Python / 用列表生成式得到加减列表

用列表生成式得到加减列表

Topic source
def pi(N):
    # step 1: 创建一个奇数序列: 1, 3, 5, 7, 9, ...
    l=itertools.count(1,2)
    # step 2: 取该序列的前N项: 1, 3, 5, 7, 9, ..., 2*N-1.
    nl=itertools.takewhile(lambda x:x<=2*N-1,l)
    # step 3: 添加正负符号并用4除: 4/1, -4/3, 4/5, -4/7, 4/9, ...
    cl=[4/x if (x+1)/2%2!=0 else -4/x for x in nl]
    # step 4: 求和:
    return  sum(cl)


  • 1

Reply