两个输入,一个输出按钮

时间:2016-04-12 04:28:16

标签: python arrays python-3.x button widget

我正在尝试制作一个按钮,以接受一个人所处的状态和他们的种族并输出他们的预期寿命。我有一长串的所有州和各种族的数据清单。我也设置了我的按钮,但需要找到一种方法来以有效的方式使用这些数据,允许按钮接收两条信息并输出一个数字,正确对应的预期寿命。

谢谢! 这是我到目前为止所拥有的 -

def life_expectancy_race(b):  
    '''This will tell you your life expectancy based on the information    plugged into the boxes.'''
    #number = print(text_input1.value) and print(text_input2.value)
    display.clear_output()
    display.display(display.Latex("Your life expectancy is {} y    ears".format(life)))


text_input1= widgets.Text(description='Enter the state you live in here')
text_input2= widgets.Text(description='Enter your race here (White, Native      American, Latino, Asian American, African American )')
button = widgets.Button(description='What is my life expectancy?')
button.on_click(life_expectancy_race)

display.display(text_input1)
display.display(text_input2)
display.display(button)

1 个答案:

答案 0 :(得分:0)

真的不确定你问的问题是什么,但这会是什么工作?我并没有特别说,只是鞭打了这个:/但是在一般的思考过程中有些东西。对不起,如果我误解了你的问题。

white = 30 
America = 40
Print (Text1 + text2)