Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 930 Bytes

DEVNOTES.md

File metadata and controls

37 lines (23 loc) · 930 Bytes

Developer Notes

Frameworks and Libraries

python docstring

def area(base, height):
    '''(number, number ) -> number    #**TypeContract**
    Return the area of a tring with dimensions base   #**Description**
    and height

    >>>area(10,5)          #**Example **
    25.0
    >>area(2.5,3)
    3.75
    '''
    return (base * height) /2