Skip to content

Commit 50303ae

Browse files
committed
Created using Colaboratory
1 parent f374afd commit 50303ae

File tree

1 file changed

+21
-10
lines changed

1 file changed

+21
-10
lines changed

day_13/01_intro_jupyter_widgets.ipynb

Lines changed: 21 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
"name": "01_intro_jupyter_widgets.ipynb",
77
"provenance": [],
88
"collapsed_sections": [],
9-
"authorship_tag": "ABX9TyMFjm8QXUwpAYwNJY9kui7p"
9+
"authorship_tag": "ABX9TyMFjm8QXUwpAYwNJY9kui7p",
10+
"include_colab_link": true
1011
},
1112
"kernelspec": {
1213
"name": "python3",
@@ -1209,6 +1210,16 @@
12091210
}
12101211
},
12111212
"cells": [
1213+
{
1214+
"cell_type": "markdown",
1215+
"metadata": {
1216+
"id": "view-in-github",
1217+
"colab_type": "text"
1218+
},
1219+
"source": [
1220+
"<a href=\"https://colab.research.google.com/github/gumdropsteve/intro_to_python/blob/main/day_13/01_intro_jupyter_widgets.ipynb\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>"
1221+
]
1222+
},
12121223
{
12131224
"cell_type": "markdown",
12141225
"metadata": {
@@ -1228,7 +1239,7 @@
12281239
"import ipywidgets as widgets\r\n",
12291240
"from IPython.display import display"
12301241
],
1231-
"execution_count": 1,
1242+
"execution_count": null,
12321243
"outputs": []
12331244
},
12341245
{
@@ -1250,7 +1261,7 @@
12501261
"btn = widgets.Button(description='Hello!')\r\n",
12511262
"display(btn)"
12521263
],
1253-
"execution_count": 2,
1264+
"execution_count": null,
12541265
"outputs": [
12551266
{
12561267
"output_type": "display_data",
@@ -1297,7 +1308,7 @@
12971308
"\r\n",
12981309
"btn.on_click(btn_eventhandler)"
12991310
],
1300-
"execution_count": 4,
1311+
"execution_count": null,
13011312
"outputs": [
13021313
{
13031314
"output_type": "display_data",
@@ -1351,7 +1362,7 @@
13511362
" disabled=False\r\n",
13521363
")"
13531364
],
1354-
"execution_count": 7,
1365+
"execution_count": null,
13551366
"outputs": [
13561367
{
13571368
"output_type": "display_data",
@@ -1392,7 +1403,7 @@
13921403
" disabled=False\r\n",
13931404
")"
13941405
],
1395-
"execution_count": 9,
1406+
"execution_count": null,
13961407
"outputs": [
13971408
{
13981409
"output_type": "display_data",
@@ -1433,7 +1444,7 @@
14331444
" disabled=False\r\n",
14341445
")"
14351446
],
1436-
"execution_count": 12,
1447+
"execution_count": null,
14371448
"outputs": [
14381449
{
14391450
"output_type": "display_data",
@@ -1479,7 +1490,7 @@
14791490
"end = widgets.DatePicker(description='End Date',\r\n",
14801491
" disabled=False)"
14811492
],
1482-
"execution_count": 15,
1493+
"execution_count": null,
14831494
"outputs": []
14841495
},
14851496
{
@@ -1512,7 +1523,7 @@
15121523
"items = [widgets.Label(str(i)) for i in range(4)]\r\n",
15131524
"widgets.HBox(items)"
15141525
],
1515-
"execution_count": 16,
1526+
"execution_count": null,
15161527
"outputs": [
15171528
{
15181529
"output_type": "display_data",
@@ -1560,7 +1571,7 @@
15601571
"\r\n",
15611572
"widgets.HBox(items)"
15621573
],
1563-
"execution_count": 17,
1574+
"execution_count": null,
15641575
"outputs": [
15651576
{
15661577
"output_type": "display_data",

0 commit comments

Comments
 (0)