Ok, the code I have is the following:
for shidx in xrange(0, book.nsheets):
print shidx
sheet = book.sheet_by_index(shidx)
d = sheet.col_values(0,2)
D = sheet.col_values(1,2)
dim = sheet.row_values(0,2)
if shidx == 0:
#numLine = sheet.row_values(2)
rs = sheet.col_values(6,2)
for i in range(4):
BB = sheet.col_values(2 + i, 2)
if BB != 0:
#print repr(d).rjust(2), repr(D).rjust(3), repr(BB).rjust(4), repr(rs).rjust(5)
file = open("C:\\calcul\\SimX18_VitesseLimite\\Documents\\ncapa-20111116\\ncapa\\resources\\output.txt", "w")
#file.write(str(table) + '\n')
file.write(str(d) + '\n')
file.write(str(D) + '\n')
file.write(str(BB) + '\n')
file.write(str(dim) + '\n')
file.write(str(rs) + '\n')
file.close()
I've commented out the print towards the end as I've been trying a few different things.
My aim is to write to a text file with each line corresponding to a column in a table. My problem here is splitting the list for d, D, dim and BB. Here is what I would like to do:
The ROW of dim and COLUMN of d:
dim = [17.0, 27.0, 37.0, 47.0, u'17-47'] (see table below for the first row and to what it corresponds)
d = [0.59999999999999998, 1.0, 1.5, 2.0, 2.5, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 12.0, 15.0, 17.0, 20.0, 22.0, 25.0, 28.0, 30.0, 32.0, 35.0, 40.0, 45.0, 50.0, 55.0, 60.0, 65.0, 70.0, 75.0, 80.0, 85.0, 90.0, 95.0, 100.0, 105.0, 110.0, 120.0, 130.0, 140.0, 150.0, 160.0, 170.0, 180.0, 190.0, 200.0]
And the first and second ROW of BB:
BB = [0.8, 0.0, 0.0, 0.0] BB = [1.0, 0.0, 0.0, 0.0]
I want to be able to write into the text file (the equivalent of a table as below):
However for the third ROW of BB:
BB = [1.0, 0.0, 1.8, 0.0]
I need to be able to obtain the following (i.e. there are two 'dim' options):
When I say that BB isn't equal to 0.0, I want to be able to write that ONE single value for d, D, BB and dim into the table but I can't get away from all the lists...
I really hope this makes sense to someone as I'm a bit stuck!