13 lines
340 B
Python
13 lines
340 B
Python
import random
|
|
|
|
num_iterations = 999999
|
|
|
|
with open("testdata", "w") as file:
|
|
# Write the number of lines to expect
|
|
file.write("%s" % num_iterations)
|
|
|
|
# Write lots of random numbers
|
|
for i in range(0, num_iterations):
|
|
# Between 0 and the maximum of uint32
|
|
file.write("\n%s" % random.randint(0, 4294967295))
|