python文件式运行怎么输入多行文字_如何在Python中插入文本文件的N行

1586010002-jmsa.png

Hello I'm trying to convert the file disp.txt from:

116 C 0.12 -0.91 0.39 -0.40 0.31 0.85 -0.66 -0.18 -0.22

117 O 0.00 -0.02 0.00 -0.05 0.05 0.12 -0.57 -0.26 -0.29

116 C -0.03 -0.04 0.00 0.01 0.09 0.19 -0.71 -0.21 -0.26

117 O -0.14 0.88 -0.45 0.47 -0.33 -0.79 0.57 0.16 0.19

to disp.mol:

vibration 1

0.12 -0.91 0.39

0.0 -0.02 0.0

vibration 2

-0.4 0.31 0.85

-0.05 0.05 0.12

vibration 3

-0.66 -0.18 -0.22

-0.57 -0.26 -0.29

vibration 4

-0.03 -0.04 0.00

-0.14 0.88 -0.45

vibration 5 ...

I opened the disp.txt file using with open('disp.txt', 'w') as f:

Read in the lines using lines = f.readlines()

split the data using for x in lines: numbers = x.split()

then

vib1.append(float(numbers[2])), vib2.append and stored them in

vib1=[], vib2=[], etc.

My problem arises when I need to put the data that I've stored in the format in disp.mol. With the code below I'm able to get output for the first three vibrations from the first two lines but I'm not sure how to perform the same loop on the next two 2 lines (as well as if I had more 2N lines). I'm also not sure how to number each vibration. Any help with this would be appreciated.

with open('disp.mol', 'w') as thisfile:

thisfile.writelines('vibration')

thisfile.writelines('\n')

for x in range (0, 2):

vib_one = str(vib1[x]) + ' ' + str(vib2[x]) + ' ' + str(vib3[x])

thisfile.writelines(vib_one)

thisfile.writelines('\n')

thisfile.writelines('vibration')

thisfile.writelines('\n')

for x in range (0, 2):

vib_two = str(vib4[x]) + ' ' + str(vib5[x]) + ' ' + str(vib6[x])

thisfile.writelines(vib_two)

thisfile.writelines('\n')

thisfile.writelines('vibration')

thisfile.writelines('\n')

for x in range (0, 2):

vib_three = str(vib7[x]) + ' ' + str(vib8[x]) + ' ' + str(vib9[x])

thisfile.writelines(vib_three)

thisfile.writelines('\n')

Output:

vibration

0.12 -0.91 0.39

0.0 -0.02 0.0

vibration

-0.4 0.31 0.85

-0.05 0.05 0.12

vibration

-0.66 -0.18 -0.22

-0.57 -0.26 -0.29

解决方案

Here's a way to do it:

with open('disp.txt') as f, open('disp.mol','w') as out:

vibration = 1

for line in f:

line1 = line.split()

line2 = next(f).split() # also get next line

for i in range(2,len(line1),3):

out.write('vibration {}\n'.format(vibration))

out.write(' '.join(line1[i:i+3])+'\n')

out.write(' '.join(line2[i:i+3])+'\n')

vibration += 1

Output:

vibration 1

0.12 -0.91 0.39

0.00 -0.02 0.00

vibration 2

-0.40 0.31 0.85

-0.05 0.05 0.12

vibration 3

-0.66 -0.18 -0.22

-0.57 -0.26 -0.29

vibration 4

-0.03 -0.04 0.00

-0.14 0.88 -0.45

vibration 5

0.01 0.09 0.19

0.47 -0.33 -0.79

vibration 6

-0.71 -0.21 -0.26

0.57 0.16 0.19

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值