Page MenuHomec4science

interact-checkpoint.py
No OneTemporary

File Metadata

Created
Thu, Jul 4, 08:36

interact-checkpoint.py

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Tue Mar 19 11:22:41 2019
@author: jecker
"""
from __future__ import print_function
from ipywidgets import interact, interactive, fixed, interact_manual
import ipywidgets as widgets
def f(x):
return x
interact(f, x='Hi there!');
interact(f, x=10);

Event Timeline