Ich habe Pandas DataFrame wie diesen
X Y Z Value
0 18 55 1 70
1 18 55 2 67
2 18 57 2 75
3 18 58 1 35
4 19 54 2 70
Ich möchte diese Daten in eine Textdatei schreiben, die so aussieht:
18 55 1 70
18 55 2 67
18 57 2 75
18 58 1 35
19 54 2 70
Ich habe so etwas versucht
f = open(writePath, 'a')
f.writelines(['\n', str(data['X']), ' ', str(data['Y']), ' ', str(data['Z']), ' ', str(data['Value'])])
f.close()
aber es funktioniert nicht. Wie macht man das?