space2 / app.py
saja003's picture
Update app.py
b1f17fd verified
raw
history blame contribute delete
173 Bytes
import gradio as gr
def greet(c):
f = c * 9/5 + 32
return f"{c}°C is equal to {f}°F"
demo = gr.Interface(fn=greet, inputs="number", outputs="text")
demo.launch()