Please consider editing your post and mark it as obsolete instead. Do you want to delete post?
where should i look for what errors have occured
Permanently deleted user
Created
after running the program code if i get errors where should I look for in the pycharm, since in the console all I see is process finished with exit code 1 , doesnt even show which line has errors
This depends on what your program is doing. Normally, if an exception happens, the stacktrace is printed to the console and displayed by PyCharm.
You can try using the "Debug" button instead of "Run" to start your program and enabling the exception breakpoint under Run | View Breakpoints... In this case PyCharm will stop on a breakpoint as soon as an exception happens.
You can try using the "Debug" button instead of "Run" to start your program and enabling the exception breakpoint under Run | View Breakpoints...
In this case PyCharm will stop on a breakpoint as soon as an exception happens.