在conda环境中使用Visual Studio Code,Python 3.6.7,我从Pylint收到一条错误消息:“ Generator'generator'没有'iloc'成员。
代码在Jupyter Notebooks中运行正常。可能与我使用的conda环境有关吗?
engine = create_engine('sqlite:///' + database_filepath)
df = pd.read_sql_table('MessageClassification',con=engine)
X = df.iloc[:,1]
Y = df.iloc[:,4:]
category_names=list(df.columns[4:])
return X,Y,category_names
Pylint在df下划线并显示以下错误消息:
Generator 'generator' has no 'iloc' member pylint(no-member)