two calc.py for combination
This commit is contained in:
parent
78211363b9
commit
7f67a6bd5c
3 changed files with 30 additions and 0 deletions
17
sami/learn-python-the-hard-way/calc.py
Normal file
17
sami/learn-python-the-hard-way/calc.py
Normal 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))
|
||||
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue