在Python中迭代浮点列表

2024-06-01 10:44:32 发布

您现在位置:Python中文网/ 问答频道 /正文

我尝试使用for循环遍历浮点值列表,但得到了错误。我正在尝试使用enumerate()打印列表。有没有更好的方法来迭代浮动列表?你知道吗

列表中有list_float= [1546626931.138813,1546626931.138954,1546626931.139053,1546626931.139289,.......,1546628078.463885]这样的数字

代码为:

import csv
import datetime
import pandas


filename = open('C:\\Users\\xyz\\Downloads\\BLF File\\output.csv', "w")
log = can.BLFReader('C:\\Users\\xyz\\Downloads\\BLF File\\test.blf')

# print ("We are here!")
log_output = []
timestamp = [] #Variable to store timestamps from blf file
time_del = [] #Variable to store time difference
# filename.write('Timestamp              ID             DLC                 Channel' + '\n')

print('We are here 1')
for time in log:
    time = str(time).split()
    timestamp = float(time[1])
    # print(timestamp)


for count, item in enumerate(timestamp):
    print(count, item)

它只打印列表中的最后一个浮点值,即“1546628078.463885”,如下所示:

0 1
1 5
2 4
3 6
4 6
5 2
6 8
7 0
8 7
9 8
10 .
11 4
12 6
13 3
14 8
15 8
16 5 

在我传递的文件中,值如下所示:

['Timestamp:', '1546626926.380693', 'ID:', '0366', 'S', 'DLC:', '8', '25', '80', 'f8', '7f', '00', '00', '00', '00', 'Channel:', '0']
['Timestamp:', '1546626926.381285', 'ID:', '0120', 'S', 'DLC:', '2', '00', '05', 'Channel:', '1']

Tags: csvimportlogid列表fortimechannel
1条回答
网友
1楼 · 发布于 2024-06-01 10:44:32

这个循环每次都覆盖timestamp,因此timestamp最后是一个浮点值,而不是一个浮点值列表。你知道吗

for time in log:
    time = str(time).split()
    timestamp = float(time[1])

你可能想要:

for time in log:
    time = str(time).split()
    timestamp.append(float(time[1]))

相关问题 更多 >