forked from TheDataLeek/Team-2945-Scouting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerate.py
executable file
·47 lines (34 loc) · 927 Bytes
/
generate.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python
"""
Generates a csv file named 'data1.csv' with random values to test scoring.
"""
import sys
import csv
import random
from random import randint as rand
def writer(out_file):
"""
param:
out_file:
the output filename for the csv
"""
teams = []
for number in range(1,2):
for number in range(1,50):
teams.append([str(number)])
for number in range(1,50):
teams.append([str(number)])
#print teams
for item in teams:
#print item, '\n'
item.append(rand(1,100))
for number in range(1,11):
item.append(rand(1,10))
item.append(random.choice('yn'))
#print teams
data = csv.writer(out_file, delimiter=',')
for item in teams:
data.writerow(item)
if __name__ == "__main__":
out_file = open('data1.csv', 'w')
writer(out_file)