我有一个包含两列的ascii文件。我需要再添加两列。输出文本文件应包含这两列,括号中的原始两列用逗号隔开。在gedit中打开ascii,我的输入文件如下所示:
1 2
3 4
5 6
7 8
最后我希望它像这样:
2 6 (1,2)
6 12 (3,4)
10 18 (5,6)
14 24 (7,8)
,以便我的两个新列是原始列的2/3的倍数。我只是以熊猫数据框的形式读取文件,已经很困惑
import pandas as pd
df = pd.read_csv("test.txt")
print(df)
1 2
0 3 4
1 5 6
2 7 8
我要输出到ascii的熊猫数据框应该具有以下结构:
2 6 (1 2)
0 6 12 (3 4)
1 10 18 (5 6)
2 14 24 (7 8)
我什至不知道如何开始,因为我完全不了解结构等。感谢您的帮助!
答案 0 :(得分:0)
您可以读取没有熊猫的文件:
we=open('new.txt','w')
with open('read.txt') as f:
for line in f:
#read a line
a,b=line.split('\t')
#get two values as string
c=2*int(a)
d=3*int(b)
#calculate the other two values
### edited
e = ''.join(("(",str(a),",",str(b),")"))
print(e)
####
#e=str(tuple(a,b))
#we.write(str(c)+' '+str(d)+e+'\n'
#write to new file
希望这会有所帮助