hamdah926's picture
Update app.py
ea1b657 verified
raw
history blame contribute delete
155 Bytes
import gradio as gr
def greet(input):
f=float(input)*9/5+32
return f
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()