Skip to content

Instantly share code, notes, and snippets.

@sergeyprokudin
Created December 6, 2018 15:56
Show Gist options
  • Save sergeyprokudin/c32f51676d4d2b75fc327b4976bc504f to your computer and use it in GitHub Desktop.
Save sergeyprokudin/c32f51676d4d2b75fc327b4976bc504f to your computer and use it in GitHub Desktop.
Numpy style docstring
def random_number_generator(arg1, arg2):
"""
Summary line.
Extended description of function.
Parameters
----------
arg1 : int
Description of arg1
arg2 : str
Description of arg2
Returns
-------
int
Description of return value
"""
return 42
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment