sci-cal / app.py
Usually3's picture
Create app.py
53403c1
raw
history blame
940 Bytes
import gradio as gr
def calculator(num1, operation, num2):
if operation == "add":
return num1 + num2
elif operation == "subtract":
return num1 - num2
elif operation == "multiply":
return num1 * num2
elif operation == "divide":
return num1 / num2
elif operation == "square":
return num1 * num1
elif operation == "cube":
return num1 * num1 * num1
demo = gr.Interface(
fn=calculator,
inputs=[
gr.Number(value=4),
gr.Radio(["add", "subtract", "multiply", "divide","square","cube"]),
"number"
],
outputs="number",
examples=[
[5, "add", 3],
[4, "divide", 2],
[-4, "multiply", 2.5],
[0, "subtract", 1.2],
],
title="Scientific Calculator",
description="Here's a sample scientific calculator. Enjoy! Code by: Improved by: Usually3
)
demo.launch()