Steps

  • 下载 Python
  • 安装 Python
  • 打开 Powershell 输入 pip install jupyter notebook 安装 jupyter notebook
  • 打开 jupyter notebook
    • 点击 new
    • 点击 Python 3
  • 输入:

    print('hello world')

  1. Ctrl-Enter run selected cells
  2. Enter enter edit mode
  3. Y to code
  4. M to markdown

In [7]:
print('hello world')


hello world