python的error与debug记录1

python:error/debug record
python的error与debug记录一 Length of values does not match length of index [link]
代码如下:
df_advert[‘advert_industry_inner_f’] = df_advert[‘advert_industry_inner’].str.split(’_’).get(0)
#此处的结果只get到了一个数据,而我要赋值的对象是多行多列的DataFrame,等号两边的值length不符。
改为:df_advert[‘advert_industry_inner_f’] = df_advert[‘advert_industry_inner’].str.split(’_’).str.get(0)
运行顺利
‘int’ object is not callable 【python的error与debug记录1】也可能是任何‘xx’ object is not callable
搜集资料得:可能是你正在调用一个不能被调用的变量或对象,具体表现就是你调用函数、变量的方式错误。
具体表现一:重复使用一个变量名,例如已经定义变量df,又将df设置为函数名
具体表现二:你多加括号
python的error与debug记录1
文章图片

    推荐阅读