|
import gradio as gr |
|
import math |
|
|
|
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 |
|
elif operation == "exponential": |
|
return math.pow(num1, num2) |
|
|
|
demo = gr.Interface( |
|
fn=calculator, |
|
inputs=[ |
|
gr.Number(value=4), |
|
gr.Radio(["add", "subtract", "multiply", "divide", "square", "cube", "exponential"]), |
|
gr.Number(value=2) |
|
], |
|
outputs="number", |
|
examples=[ |
|
[5, "add", 3], |
|
[4, "divide", 2], |
|
[-4, "multiply", 2.5], |
|
[0, "subtract", 1.2], |
|
[2, "exponential", 3] |
|
], |
|
title="Scientific Calculator", |
|
description="Here's a sample scientific calculator. Enjoy! Code by: Freddy Aboulton Improved by: Usually3" |
|
) |
|
|
|
demo.launch() |
|
|