cleaner file structure + python script to generate example values
This commit is contained in:
6
gen_values.py
Normal file
6
gen_values.py
Normal file
@@ -0,0 +1,6 @@
|
||||
from random import randint
|
||||
p = randint(100,1000)
|
||||
a = ["Integer::from("+str(p*randint(1,100)+randint(0,20))+"), " for _ in range(200)]
|
||||
for b in a:
|
||||
print(b)
|
||||
print(p)
|
||||
Reference in New Issue
Block a user