私はCSVファイルを1行ずつ読み込もうとしています。しかし、それは最初に予想されたより少し困難であることが証明されています。さらに処理するためにcsvファイルを個別に読み取る方法
コード:
#!/usr/bin/env python
import glob
import os
file_dir=os.getcwd()
files_2=glob.glob(file_dir)
m_class="ABC"
m_id="123"
device=m_class+"-"+m_id
with open('output_temp.csv', 'w') as output_temp:
for filename in glob.glob(os.path.join(os.getcwd(), device+'*.log')):
#print "----\nFILE NAME: " + filename
with open(filename, 'r') as f:
content = f.readlines()
if content:
mycontent=str("".join(content))
#print mycontent
output_temp.write(str(mycontent))
counter=1
with open('output_temp.csv', 'r') as f:
content = f.readlines()
print "Line: " + str(counter) + " data: " + str(content)
counter=counter+1
output_temp.csvファイル:
1464557866.4111354
1464561244.9223452
1464506206.4268115
1464507324.3743494
1464491791.4750218
1464492017.1200309
1464560723.4278536
1464560838.5569682
1464578213.2567956
1464580860.4225895
1464534128.2530715
1464545504.5457716
1464603405.5002685
1464610938.5988958
1464560390.4099076
1464579888.7111971
1464591413.4147444
1464595286.6162462
1464548255.5633001
1464548400.8739398
1464596402.442414
1464603613.2534776
1464523008.4462287
1464524100.9739816
1464389395.6676936
1464389586.7012687
1464542283.2585688
1464548192.5785992
ターミナル出力:
Line: 1 data: ['1464557866.4111354\n', '1464561244.9223452\n', '1464506206.4268115\n', '1464507324.3743494\n', '1464491791.4750218\n', '1464492017.1200309\n', '1464560723.4278536\n', '1464560838.5569682\n', '1464578213.2567956\n', '1464580860.4225895\n', '1464534128.2530715\n', '1464545504.5457716\n', '1464603405.5002685\n', '1464610938.5988958\n', '1464560390.4099076\n', '1464579888.7111971\n', '1464591413.4147444\n', '1464595286.6162462\n', '1464548255.5633001\n', '1464548400.8739398\n', '1464596402.442414\n', '1464603613.2534776\n', '1464523008.4462287\n', '1464524100.9739816\n', '1464389395.6676936\n', '1464389586.7012687\n', '1464542283.2585688\n', '1464548192.5785992\n']
Q:私はcsvファイルの各行を独立して出力したいので、値の操作や値の追加、連結を行うことができます。 output_temp.csv
ファイルのように各行を個別に印刷するには
注:私はPythonを初めて使用しています。
ありがとうございますが、どうすれば 'str(data.strip(" \ n "))'から1を引くことができますか? 'prev = 1464557866.4111354 - 1.0' – 3kstc
@ 3kstcこれを' float'に変換して 'str'に戻すことができます。例えば'str(float(data.strip(" \ n ")) - 1.0)' –