def time_constant_values(time_value, df, band_list):
try:
time_value in df.index
except KeyError:
print('The time value does not exist!')
else:
constants = []
for band in band_list:
constants.append(df.loc[time_value][band])
t0_dict = dict(zip(band_list, constants))
return t0_dict
熊貓數據幀包含格式爲hh:mm:ss的索引中的時間值。我在做什麼除錯部分?在索引中搜索熊貓數據幀中的值
我想訪問特定的時間行爲某些colummns,然後形成一個字段列標籤作爲鍵和數據值作爲值。
謝謝!
我在這裏看到了很多東西,首先什麼是你想在你的try塊做的,並且有一個else語句沒有如果。 – bhansa
@bhansa其他部分是好的(有效的Python語法),還有其他問題... –
如果您發現它有用,請接受答案,並堅持一個答案。謝謝。 –