Functions#

joke()[source]#

A function that prints a joke.

Returns

str – An awesome joke.

Examples

In [1]: import TemplatePythonPackage

In [2]: TemplatePythonPackage.joke()
Out[2]: 'A very funny joke.'
anotherfunction(x, y=0)[source]#

This function does something.

Parameters
  • x (float) – A number.

  • y (int, optional) – A number, by default 0

Returns

float – A number

Examples

In [1]: import TemplatePythonPackage

In [2]: TemplatePythonPackage.anotherfunction(1, 2)
Out[2]: 3