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