Sharoya

- Total activity 6
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 2
-
Sharoya commented, -
Sharoya created a post, Pyplot in Python Console: “RuntimeError: 'path' must be None or a list, not <class '_frozen_importlib_external._NamespacePath'>”
I tried to import `pyplot` with `import matplotlib.pyplot as plt` in `Pycharm` via Python Console (set as default in my interpreter options) and I got this error log: Traceback (most recent call la... -
Sharoya created a post, std::cout in debug is displayed in terminal only when the program terminates
So lets say I have a program like this : #include <iostream>#include <typeinfo>using namespace std;class A {public: A() { cout << "1"; } A(const A &obj) { cout << "2"; }};class B : public ...