jupyter notebook
基本的に IPython のマジックコマンドが分かってれば大丈夫。
※IPythonの使い方メモ 参照
変数名を書くだけで表示
from IPython.core.interactiveshell import InteractiveShell InteractiveShell.ast_node_interactivity = "all" df1 = ....... df2 = ....... df1 df2
dispplay による表示
from IPython.display import display : display(df1) display(df2)