ExamSpace2 / app.py
SarahMarzouq's picture
Create app.py
b7e470b verified
raw
history blame contribute delete
144 Bytes
import gradio as gr
def calc(input):
return input * 9/5 + 32
demo = gr.Interface(fn=calc, inputs="number", outputs="number")
demo.launch()