README / app.py
uzma2025's picture
Add calculator app file
bf13eaf verified
raw
history blame contribute delete
242 Bytes
import gradio as gr
def calculate(expr):
try:
return str(eval(expr))
except:
return "Error"
demo = gr.Interface(
fn=calculate,
inputs="text",
outputs="text",
title="Gradio Calculator"
)
demo.launch()