Categories:
Cloud (204)
Entertainment (11)
Facebook (43)
General (50)
Life (31)
Programming (64)
Technology (430)
Testing (4)
Tools (488)
Twitter (5)
Wearable (26)
Web Design (44)
Collections:
Other Resources:
Jupyter Notebook File
What Is Jupyter Notebook file?
✍: FYIcenter.com
Jupyter Notebook file, is a JSON file
used to record computer code, program result and embedded rich text elements
(paragraph, equations, figures, links, etc.).
Here is a simple example of Jupyter Notebook, hello.ipynb:
{
"cells": [
{
"metadata": {},
"cell_type": "markdown",
"source": "### \"Hello World\" Example"
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "print(\"Hello World!\")",
"execution_count": 4,
"outputs": [
{
"output_type": "stream",
"text": "Hello World!\n",
"name": "stdout"
}
]
}
],
"metadata": {
"kernelspec": {
"name": "python3",
"display_name": "Python 3",
"language": "python"
},
"language_info": {
"name": "python",
"version": "3.6.13",
"mimetype": "text\/x-python",
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"pygments_lexer": "ipython3",
"nbconvert_exporter": "python",
"file_extension": ".py"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
If you load the above Jupyter Notebook file on a Jupyter server, it will be rendered as the following.
Here is a more complex Jupyter Notebook example:
2021-12-23, 1057🔥, 0💬
Popular Posts:
How to install Mozilla Firefox 2.0 add-on: FireFTP? FireFTP is a Mozilla Firefox 2 add-on that provi...
What is "Microsoft Access Outlook Add-in for Data Collection and Publishing" COM Add-in in Outlook 2...
Where to find answers to frequently asked questions on FTP (File Transfer Protocol and related tools...
How to save word documents into Unicode UTF-8 text files? When I convert Word documents into text fi...
Why am I not seeing the "Call Forwarding" option on Skype for Business on Windows? You don't see the...