ntam0001's picture
Create app.py
2f9c70c
raw
history blame contribute delete
No virus
372 Bytes
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.