- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我想使用 widgets.Text() 指定可以传递到 API 请求中的多个变量(年、月、日)。
基于this question的答案我能够成功地将单个文本框的输入保存到单个变量。但我想同时显示多个文本框并将它们的输入值保存到三个不同的输出变量。我不确定如何从给出的示例中进行概括。
此代码适用于单个变量:
# Create text widget for output
year_output = widgets.Text()
# Create text widget for input
year_input = widgets.Text(
placeholder="example '2017'",
description='Year:',
disabled=False
)
# Define function to bind value of the input to the output variable
def bind_input_to_output(sender):
year_output.value = year_input.value
# Tell the text input widget to call bind_input_to_output() on submit
year_input.on_submit(bind_input_to_output)
# Display input text box widget for input
display(year_input)
我希望能够尽可能高效地做这样的事情:
year_output = widgets.Text()
month_output = widgets.Text()
day_output = widgets.Text()
year_input = widgets.Text(
placeholder="example '2017'",
description='Year:',
disabled=False
)
month_input = widgets.Text(
placeholder="example '04'",
description='Month:',
disabled=False
)
day_input = widgets.Text(
placeholder="example '30'",
description='Day:',
disabled=False
)
#make this a generic function so that I don't have to repeat it for every input/output pair
def bind_input_to_output(sender): #what is 'sender'?
output_var.value = input_var.value
year_input.on_submit(bind_input_to_output)
mont_input.on_submit(bind_input_to_output)
day_input.on_submit(bind_input_to_output)
display(year_input)
display(month_input)
display(day_input)
如果这还不够清楚,我们深表歉意!我可以根据需要澄清。非常感谢任何指导。谢谢!
最佳答案
通过调整 this question 中的说明,我能够做我想做的事。我的代码如下,供引用:
import ipywidgets as widgets
from IPython.display import display
class date_input():
def __init__(self,
year = "e.g. '2017'",
month = "e.g. '05'",
day = "e.g. '21'"
):
self.year = widgets.Text(description = 'Year',value = year)
self.month = widgets.Text(description = 'Month',value = month)
self.day = widgets.Text(description = 'Day',value = day)
self.year.on_submit(self.handle_submit)
self.year.on_submit(self.handle_submit)
self.year.on_submit(self.handle_submit)
display(self.year, self.month, self.day)
def handle_submit(self, text):
self.v = text.value
return self.v
print("enter the year, month and day above, then press return in any field")
f = date_input()
要查看输出,请在下一个单元格中运行:
print("Date input captured: " + "/".join([f.year.value, f.month.value, f.day.value]))
关于python - 使用 Ipython ipywidget .Text() 创建多个变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43744999/
是否可以使 ipywidget 交互的输入表单更大?例如,当我使用以下代码时,该字段对于标题来说太小了,看起来很乱。 # python code to run in jupyter notebook
我无法理解 IPython display 上 update 的功能。 看来要更新小部件需要在顶层实例化,并且不能从 ipywidget 的回调中实例化。 这是由 ipywidget Button 调
ipython 小部件和交互式对象都有 observe() 方法。 (请参阅打印语句的结果。)通过以下示例,我可以确认 observe() 方法在 slider 小部件上的操作,但不能在交互式(即)对
我创建了一个小示例,它显示了工作情况和非工作情况。工作示例, import ipywidgets as widgets selected = {} a = widgets.Dropdown(descr
让我们假设以下问题:我们有一个 Ipywidget 按钮和一个进度条。单击按钮时,将执行函数 work(),它只会填充进度条直到完成,然后反转过程并将其清空。就目前而言,这样的功能会持续运行。以下代码
我正在使用交互式 ipywidget 下拉菜单来过滤一定数量的数据并用 plotly 绘制图形。 我的问题是下拉小部件的更新:这里是一个简化的例子: import ipywidgets as
我正在尝试在到达所有边缘的按钮上放置一个“+”号。这是一个最小的示例,来自 Jupyter 笔记本,首先是样式: %%html .button_style{ font-size:155px;
我在 IPython 中使用小部件,它允许用户重复搜索短语并在另一个小部件(选择小部件)中查看结果(不同的标题),然后选择其中一个结果。 简而言之: search_text = widgets.Tex
我想创建一个复选框列表,以便用户可以从数据列表中进行选择。我已经为每条数据创建了复选框,现在我希望勾选这些复选框以将数据添加到列表中。 import ipywidgets as widgets dat
我有一个来自 glob.glob 的 csv 文件列表。每个 csv 用于生成一个图形。我想使用 ipywidget 下拉菜单,以便仅绘制所选的文件。 import glob import panda
我正在使用ipywidgets创建一个简短的表单,显示两个字段:图像的预期宽度和高度。 我想添加一个复选框,以便如果选中该框,则会从文件加载信息。 如果选中该框,则会出现一个文本区域(或文件选择器),
我正在尝试从在 Python 3.6 中运行 Jupyter Notebooks 的 Microsoft Azure Notebooks 中的 ipywidgets 小部件获取输出。但是,当我得到它们
我正在使用 ipywidgets.widgets.Checkbox。有没有办法处理复选框事件?请帮忙。我是初学者。 编辑:如何创建复选框列表? 最佳答案 没有任何直接事件,但您可以使用observe
我制作了一个图形,其中包含分别基于随机正态分布、 Gamma 分布、指数分布和均匀分布的直方图的四个子图。我使用 matplotlib 和 Jupyter Notebook 制作的。它是通过 ipyw
我想用 ipywidgets 制作一个交互式模块。到目前为止一切顺利,但我被卡住了。我想根据特定情况隐藏某个 ipywidget 对象的可见性,并且我希望我打印的文本显示在小部件上方并停留在那里。 d
我想更改 ipywidget ToggleButton 的按钮颜色。在文档中它被描述为: widgets.ToggleButtons( options=['Slow', 'Regular',
我有一个下拉菜单,其中显示了一些可能的“周期”。这些实际上是包含一些数据的 .csv 文件。然后我有另一个下拉列表应该显示这个 .csv 文件中的所有变量。因此,第二个下拉列表应根据第一个下拉列表中选
我一直在尝试在更改 ipywidget 后自动更新变量并运行代码片段。 到目前为止,我找到的唯一部分解决方案是按照 github ( here ) 上的示例声明一个全局变量类型: import ipy
有没有办法控制 ipywidgets 的放置和对齐(在 jupyter notebook 中)? from ipywidgets import widgets from IPython.display
我正在尝试使用 ipywidgets 按钮进行连续的按钮点击过程。 点击按钮 1 应该清除按钮 1 并显示按钮 2 等... 看起来wait变量的引入让我的purge函数无法访问,我不明白为什么。 f
我是一名优秀的程序员,十分优秀!