Hello,
I have executed the python with Pycharm and Jupyter Notebook tool as well as Python Exe using Run command from Alteryx.
The Script executed successfully.
But when i am trying to run the exact same code using python its gives me error.
I am trying to compare two data frames with below code
comparision=df1.values==df2.values
rows,cols=np.where(comparision=='False')
This code executed in all the IDEs. but using Python Tool it is showing error as below
Error: elementwise comparison failed this will raise an error in the future
ValueError: not enough values to unpack (expected 2, got 1)
Please help to resolve the issue