1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Google Colabratory は Python スクリプトを実行するノートブックですが、JavaScript を実行して出力することができます。

このノートブックが元ネタです。
JavaScript のスニペットがノートブックでためせます。

advanced_outputs.ipynb

###JavaScript (DOM) を実行して表示
IPython.display.Javascript() で実行・表示します。

import IPython
js_code = '''
document.querySelector("#output-area").appendChild(document.createTextNode("hello world!"));
'''
display(IPython.display.Javascript(js_code))

hello world!

JavaScriptはノートブックのドキュメントに保持され、別のセルで実行しても保持されています。

display(IPython.display.Javascript(js_code)) # 別セルで実行しても出力される

hello world!

🐣


フリーランスエンジニアです。
お仕事のご相談こちらまで
rockyshikoku@gmail.com

Core MLを使ったアプリを作っています。
機械学習関連の情報を発信しています。

Twitter
Medium

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?