Answers for "python create docstring for module"

0

Python Docstrings Example

Python Docstrings Example
def Add(a,b):
    '''Takes two number as input and returns sum of 2 numbers'''
    return a+b
Posted by: Guest on November-29-2021
-1

python docstring use

def function1():
   """
   :docstring- tells about program,what the program contains
   """
Posted by: Guest on May-15-2021

Python Answers by Framework

Browse Popular Code Answers by Language