I've seen similar posts but haven't seen any reply that really addresses the difference in outputs between Jupyter Notebook and PyCharm.
An example is like this:
from datetime import datetime
now = datetime.now()
now
Output:
Jupyter notebook: datetime.datetime(2019, 12, 8, 13, 20, 37, 339795)
Pycharm: Process finished with exit code 0
There is no output shown in PyCharm. Could someone please explain why there is a difference in the outputs of these two? Any way I can see the same output in PyCharm?