{ "cells": [ { "cell_type": "code", "execution_count": 4, "id": "275a869c-e8a3-4f6b-9b57-fc2f7168fd35", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "5" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "89039be9d80d47e28620bcb141326986", "version_major": 2, "version_minor": 0 }, "text/plain": [ "interactive(children=(IntSlider(value=5, description='x', max=10), Output()), _dom_classes=('widget-interact',…" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "Done\n" ] } ], "source": [ "import ipywidgets\n", "from ipywidgets import interact, IntSlider\n", "\n", "def f(x):\n", " return x\n", "\n", "interact(f, x=IntSlider(min=0, max=10, step=1, value=5))\n", "print(\"Done\")\n" ] }, { "cell_type": "code", "execution_count": 3, "id": "5096e77c-b350-4512-96c3-9cef0534bf35", "metadata": {}, "outputs": [], "source": [ "!pip freeze | grep ipwidget" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.13" } }, "nbformat": 4, "nbformat_minor": 5 }