RELATEED CONSULTING
相关咨询
选择下列产品马上在线沟通
服务时间:8:30-17:00
你可能遇到了下面的问题
关闭右侧工具栏

新闻中心

这里有您想知道的互联网营销解决方案
使用python创建大量的测试小文件
import threading
import random
import string
lock = threading.RLock()

fn = []

def run():
    try:
        f = file(filename,'wb')
        for p in range(1,100):
            salt = ''.join(random.sample(string.ascii_letters + string.digits, 62)) # 随机62位字符串
            f.write(salt)
            f.write("\n")
        lock.acquire()
        f.close()
        lock.release()
    except TypeError:
        pass

for i in range(1,10000000):
    filename = random.randint(1,100000000)
    fn.append(filename)
    if filename not in fn:
       continue 
    else:
        filename = str(filename)
        t = threading.Thread(target=run,args=())
        t.start()

名称栏目:使用python创建大量的测试小文件
网页链接:http://sczitong.cn/article/jdjioh.html