Decoding PyCharm

Aditi Munda
2 min readJan 28, 2022

Especially for beginners…

Screen Shot of my PyCharm

Python is an interpreted high-level general-purpose programming language. It has different types of IDE such as PyCharm, Spyder, Atom, Jupyter Notebook, etc.

When you are new to Python, learning from YouTube, or taking courses they all use IDE’s at their convenience. But in the real world or industry, many professional developers use PyCharm as it has been considered the best IDE for python developers. So, the transaction from Jupyter Notebook (for example) to PyCharm will be a little different.

So lets Decode PyCharm.

The most important thing in programming is output. So, when we use df.head( ) command its shows the first five rows but not in PyCharm. PyCharm is not Python Shell which automatically prints all results. You have to use print( ).

Screen Shot of my PyCharm

But PyCharm run window allows just five columns and forces a page break making it difficult to see a larger number of columns side by side. To print an entire DataFrame call pandas.set_option (“display.max_rows” & “display.max_columns”).

Screen Shot of my PyCharm

plt.show() This tells the system to draw it in PyCharm. The notebook will auto-call draw and print functions by default.

I will keep updating this article in the future as well. Do check it again.

Good luck to all, and if you found the article helpful, plz share with your friends and colleagues. Thankyou \^_^/

--

--

Aditi Munda

I respect my work and I am passionate about finding answers. \^_^/