Source code for OpenSoftwareTut.OpenSoftwareTut
import numpy as np
[docs]def SampleCode():
""" This is a sample code for the tutorial!
This code prints out "Stars are awesome!". More about
`docstring conventions <https://www.python.org/dev/peps/pep-0257/>`_.
Args:
None
Returns:
print statement:
:Containing:
:statement1: statement1 description
:statement2: statement2 description
"""
statement1=np.nan
statement2=np.inf
print("Stars are awesome!")
return statement1, statement2