'How to see a printout at Jupyter Notebook
I am new in Python and Jupyter. I used PyCharm more than Jupyter. Since Jupyter is more popular than PyCharm, I'd like switch to Jupyter. After installation, I tried some very simple statements like:
print("hello world")
The printout didn't show. I even tested it by removing one of the quotes: print("hello world) and then ran it. There was no feedback at all. Did I install Jupyter incorrectly? Cannot figure out what is going on. Please help me out.
Thanks in advance.
Solution 1:[1]
make sure you select a kernel for your Jupyter. at the top right you will see kernel, click and select python3 or whatever you want to use.
testing with print("hello world") should return hello world
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | bara-elba |
