exam2 / app.py
khaled06's picture
Update app.py
ee2224b verified
raw
history blame
162 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')
demo.launch()