I'm testing codes from Colab, where you can just show the result without using print function, such as:
df.Quantity.dtypes
but in PyCharm, you have to run as the following to show the result:
print(df.Quantity.dtypes)
It's really time consuming if such commands are frequent.
How could I print out without using print functin in PyCharm just as Colab?
Thanks a lot!