Python 空数组用法

发布时间:2019-07-24 09:47:53编辑:auto阅读(1574)

    Python 空数组
    Python array 用法  
    直接 result=[]
        for x in range(0,N):
            temp=beta(b,n)
            print temp
            if temp >= n:
                result.append("Yes")  #直接append
            else:
                result.append("No") #直接append
        return result

关键字