I am new to PyCharm and I have \'Process finished with exit code 0\' instead of getting (683, 11) as a result (please see attachment), could you guys help me out please? Much ap
please add your code and not the attachment. Also, this means that the compilation was successful (no errors). Pycharm and command prompt (Windows OS), terminal (Ubuntu) don't work the same way. Pycharm is an editor and if you want to print something, you explicitly have to write the print statement:
print(whatever_you_want_to_print)
In your case,
print(data.shape)
Hope it helps.