全プログラマに捧ぐ! Webお試し版の #ノートブック + #python で手軽にプログラム実行結果を #Markdown スタイルで保存してみる


Ref

全プログラマに捧ぐ!図解「ノートブック」 - Qiita

Enter

python を選ぶ

暫く待つ

こんな画面になる

再生ボタンを押す

いろいろ入力していく

Shift + Enter で実行できる様子

Download AS Markdown を選ぶ

こんな感じ

以下、markdownそのまま磔

Welcome to Jupyter!

This repo contains an introduction to Jupyter and IPython.

Outline of some basics:

You can also get this tutorial and run it on your laptop:

git clone https://github.com/ipython/ipython-in-depth

Install IPython and Jupyter:

with conda:

conda install ipython jupyter

with pip:

# first, always upgrade pip!
pip install --upgrade pip
pip install --upgrade ipython jupyter

Start the notebook in the tutorial directory:

cd ipython-in-depth
jupyter notebook
print(1)
1
print("OK!")
OK!
OWWWW
---------------------------------------------------------------------------

NameError                                 Traceback (most recent call last)

<ipython-input-3-63b91ee5210e> in <module>
----> 1 OWWWW


NameError: name 'OWWWW' is not defined

Original by Github issue