def add1(x,y):
" " "This return the sum of two numbers " " "
return (x+y)
print(add1(5,8))
print(add1._doc_)
# Health Management System print ( "This is a Health Management System" ) def getdate(): import datetime return datetime.datetime.now() def take(k): if k == 1: c = int ( input ( "Type 1 for Food /n Type 2 for Exercise /n" )) if c == 1: d = int ( input ( "Enter 1 for Divyansh /n Enter 2 for Rohit /n Enter 3 for Sohan" )) if d == 1: value = input ( "Type here /n" ) with open ( "Dpsc-food.txt" ) as op: ...
Comments
Post a Comment