two calc.py for combination
This commit is contained in:
parent
78211363b9
commit
7f67a6bd5c
3 changed files with 30 additions and 0 deletions
13
sami/learn-python-the-hard-way/calc2.py
Normal file
13
sami/learn-python-the-hard-way/calc2.py
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
def add(a,b):
|
||||
# calculating the sum
|
||||
sum=a+b
|
||||
#opening the file in an append mode
|
||||
file = open('output.txt',"a")
|
||||
file.write(f'Sum of {a} and {b} is {sum}\n')
|
||||
#at last i close the file
|
||||
file.close()
|
||||
|
||||
|
||||
#call the function
|
||||
add(5,7)
|
||||
add(2,6)
|
||||
Loading…
Add table
Add a link
Reference in a new issue