Skip to content

Instantly share code, notes, and snippets.

View Ash7428's full-sized avatar

Ash ra Ash7428

View GitHub Profile
@Ash7428
Ash7428 / calculator.py
Created October 7, 2025 15:55 — forked from complxalgorithm/calculator.py
Simple Python calculator program.
# Program make a simple calculator that can add, subtract, multiply and divide using functions
# define functions
def add(x, y):
"""This function adds two numbers"""
return x + y
def subtract(x, y):
"""This function subtracts two numbers"""