exam2 / app.py
khaled06's picture
Update app.py
fb4b43f verified
raw
history blame
191 Bytes
import gradio as gr
def greet(input):
f =float(input)
return f * 9/5 + 3
demo = gr.Interface(fn=greet, inputs='text', outputs='text')# the output will display heredemo.launch()