使用panda.read_sql查询的数据框结果会引发关键错误 在以下循环中。查询产生的结果-'plate'-在下一个sql查询中使用时,会导致'key error'异常。我该如何解决?
query="select distinct plate from kit where Exp='260' "
df = pandas.read_sql_query(query, conn)
i=0
while i < (len(df['plate'])-1):
newplate=(df['plate'][i]) --> throws "key error"