exam2 / app.py
khaled06's picture
Update app.py
bc883e8 verified
raw
history blame contribute delete
148 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')