Reputation: 1
I am trying to import matplotlib
, here is how it looks.
when i click run, it shows me nothing but the whole codeimport matplotlib
turns to grey. It happened every module I load in. I want to know is it normal?
Upvotes: 0
Views: 38
Reputation: 3232
Pycharm does this whith the import statements that are not used, so you can keep control of which modules the code is actually using. It will be normal again once you use it in your code.
Upvotes: 1