Hi,
i have a list that contains 5 columns that contains strings and float values(3 strings columns and 2 float columns) ..
i want to export this list to a space separated text file (each column in the list is a column in the text file)
i tried to do this:
text_file = open("output/resfile.txt", "w")
for fw in len(range(list)):
text_file.write(list[fw][0] + " " + list[fw][1] + "\n")
but it's not working,
how can i do the export easily in python??
thank you ..