Q2 / app.py
fahad11182's picture
Update app.py
061057e verified
raw
history blame contribute delete
150 Bytes
import gradio as gr
def con(input):
f = input * 9/5 + 32
return f
demo = gr.Interface(fn=con, inputs="number", outputs="text")
demo.launch()