python造数

Posted 懒羊羊softwaretesting

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python造数相关的知识,希望对你有一定的参考价值。

做性能测试时,往往需要大量的参数化数据,比如注册。

from random import Random

def random_str(randomlength=8):
str=‘‘
chars=‘0123456789‘
length=len(chars) -1
random=Random()
for i in range(randomlength):
str+=chars[random.randint(0,length)]
return str

li=‘1‘

list=li.split(",")

fd2=open(r‘C:/0427/test.txt‘,"a+")
for i in range(1,50000):

random0=random_str()
list[0]=‘111‘+random0

 


list1=‘,‘.join(list)
fd2.writelines(list1)
fd2.writelines("\n")
fd2.flush()


print "sucess!"

 


















以上是关于python造数的主要内容,如果未能解决你的问题,请参考以下文章

sql造数技巧

Mysql 造数测试

一文看懂大数据量表如何优化

NOIP2001普及组解题报告

日志分析命令awk基础用法

HDU6148 Valley Numer