Skip to content

Instantly share code, notes, and snippets.

@Solo158
Solo158 / calculator
Created July 1, 2021 00:53
You can download idle at: python.org
def add(x,y):
return x + y
def subtract(x,y):
return x - y
def multiply(x,y):
return x * y
def divide(x,y):
return x / y
while True: