Skip to content

Fullsupport docstring

fullsupport(x: float, y: float = 3)

Take the max between two numbers

Parameters

x: float – Description of parameter x.

y: float – Description of parameter y.

Returns

float – Description of returned object.

Heading 4 with secondary text

note block

Add a personnal remark here

warning block

Add details about the possible problems

success block

Something you’re proud of ? Tell it here

summary block

A summary block

question

Any question

tip block

Any tip to share ?

bug block

Oups!

quote block

Oups!

fail block

A fail block

info block

You need to add more context or more informations

error block

Sometimes things go wrong

example block

Illustrate your point with an example

Of course there is emoji ❤️

and code inline with syntax highlights: import numpy as np

Link to other sites (http://www.google.com) or other part of the doc function test

note block with display

You can also add note on a block that can be hidden

open by default

And it can be open by default

Source Code
1
2
3
def fullsupport(x: float, y: float = 3):

    return np.max(x, y)

test(x: int)

no doc

Source Code
1
2
3
def test(x: int):

    return