I have been looking for a feature where PyCharm notifies me that a script has finished running in the console after each run. At present, I have to add print('done') after each code.
I got smarter so I defined d = 'done' once and after each run I simply add a d so it prints out 'done' which I thought to be more of a time saver.
Now I am even more lazy and whenever I press F10 (my run command button), I want PyCharm to automatically run a small script with d = 'done' in it right after finishing running the main script.
Is there a way to do this?