two calc.py for combination

This commit is contained in:
samialazar 2020-06-01 16:58:46 +02:00
commit 7f67a6bd5c
3 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,17 @@
# This function adds two numbers
def add(num1, num2):
return num1 + num2
file = open("output.txt","a")
file.write(f's
# Take input from the user
select = int(input("Select operations form 1, 2, 3, 4 :"))
number_1 = int(input("Enter first number: "))
number_2 = int(input("Enter second number: "))
print(number_1, "+", number_2, "=",
add(number_1, number_2))