temperature / app.py
RakanAlsheraiwi's picture
Update app.py
cd1c56b verified
raw
history blame contribute delete
184 Bytes
import gradio as gr
def celsius_to_fahrenheit(celsius):
return celsius * 9/5 + 32
demo = gr.Interface(fn=celsius_to_fahrenheit, inputs="number", outputs="text")
demo.launch()