File size: 1,084 Bytes
53403c1 626683a 564b4e2 53403c1 626683a 53403c1 626683a 53403c1 626683a 53403c1 50a28de 53403c1 564b4e2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
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()
|