Basic Calculator - Learning to Code
(Edited)

If you're interested in learning coding this is a basic calculator you can use and play around with.
Its also on github. https://github.com/PaulMoon410/learn_calc
Python Coded
clock.py
# Thank you to those at Learn To Code on Hive.io
# adds two numbers
def add(x, y):
return x + y
# subtracts two numbers
def subtract(x, y):
return x - y
# multiplies two numbers
def multiply(x, y):
return x * y
# divides two numbers
def divide(x, y):
return x / y
print("Select operation.")
print("1.Add")
print("2.Subtract")
print("3.Multiply")
print("4.Divide")
while True:
# input from the user
choice = input("Enter choice(1/2/3/4): ")
# check if choice is one of the four options
if choice in ('1', '2', '3', '4'):
try:
num1 = float(input("Enter first number: "))
num2 = float(input("Enter second number: "))
except ValueError:
print("Invalid input. Please enter a number.")
continue
if choice == '1':
print(num1, "+", num2, "=", add(num1, num2))
elif choice == '2':
print(num1, "-", num2, "=", subtract(num1, num2))
elif choice == '3':
print(num1, "*", num2, "=", multiply(num1, num2))
elif choice == '4':
print(num1, "/", num2, "=", divide(num1, num2))
# check if user wants another calculation
# break the while loop if answer is no
next_calculation = input("Let's do next calculation? (yes/no): ")
if next_calculation == "no":
break
else:
print("Invalid Input")
hive-188262
neoxian
pimp
palnet
waivio
ctp
lassecash
creativecoin
proofofbrain
cent
lern
ecency
ecency
0
0
0.000
Keep up the good work!
!WINE
Something I can understand, finally! Ahahah
Curated by @arc7icwolf.byte for the #LearnToCode community.
After using what I know the other code is way simpler when you use all of Hives APIs.