Spaces:
Sleeping
Sleeping
| import gradio as gr | |
| def get_number(x, y): | |
| return f"Results = {float(x) * float(y)}" | |
| iface = gr.Interface(fn=get_number, inputs=["number", "number"], outputs="text", | |
| title='Multiplication Table', | |
| description='Enter two numbers from your choice to multiply them.') | |
| iface.launch(inline=False) #This helps to launch our app. | |