我尝试将新列应用于数据框(如果它不为空)。假设no_result
是熊猫数据框。如果为空,则将返回空数据帧。如果它不是空的并且由1列组成,那么我想添加两个新的额外列,分别为“ output1”和“ output2”。因此,数据框将为空,或如下所示:
0 1 2
0 A output1 output2
1 B output1 output2
我在下面尝试过这样的事情:
if no_result = []:
no_result = []
return no_result
else
no_result[1] = 'output1'
no_result[2] = 'output2'
return no_result
它显示语法错误。如何返回数据帧?预先感谢。
答案 0 :(得分:1)
async
我希望这会有所帮助!