test4 / app.py
RanAlh443's picture
Update app.py
564a98f verified
raw
history blame contribute delete
177 Bytes
import gradio as gr
def convertToF(input):
Cels=float(input)
return (Cels * 9/5) + 32
demo = gr.Interface(fn=convertToF, inputs="text", outputs="text")
demo.launch()