value_temp = p.split(';')
value = round(float(value_temp[2]),5)
for i in range(24):
df_1.loc[i] = [1,date[0],value[i]]
print(df_1)
I split a string. What I want to do is extract the values from string and change it to float, and then put it into DataFrame. But I'm getting error from putting values in a DataFrame.