PyCharm: Process finished with exit code 0

前端 未结 9 1917
感情败类
感情败类 2021-02-13 16:51

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

9条回答
  •  野性不改
    2021-02-13 17:22

    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.

提交回复
热议问题