module1 package

Submodules

module1.file1 module

This is the doc string for the file1 file where we can say things about the python module.add() We can write long text if we want.

  • topic 1

  • topic 2

module1.file1.file1_func1()[source]

This function does nothing.

module1.file1.file1_func2(param1: int, param2: int)[source]

This function returns the sum of the values you pass in as arguments.

Parameters:
  • param1 (int) – Integer to sum.

  • param2 (int) – Integer to sum.

Returns:

Sum of the given parameter’s values.

Return type:

int

module1.file1.file1_func3()[source]

This function does nothing.

module1.file1.file1_func4(param1: str, param2: int, param3: bool)[source]

“This function returns the 10 or the param2 times 3 if …

Parameters:
  • param1 (str) – String to check if we should do something.

  • param2 (int) – Base value to the multiplication.

  • param3 (bool) – If we should do the multiplication or not.

Returns:

_description_

Return type:

int

module1.file1.file1_func5(param1: str, param2: int)[source]

This function returns true.

Parameters:
  • param1 (str) – Some String…

  • param2 (int) – Some Integer…

Returns:

Always true.

Return type:

boolean

module1.file2 module

This is the doc string for the file2 file where we can say things about the python module.add() We can write long text if we want.

  • topic 1

  • topic 2

module1.file2.file2_func1()[source]

This function does nothing.

module1.file2.file2_func2(param1: int, param2: int)[source]

This function returns the sum of the values you pass in as arguments.

Parameters:
  • param1 (int) – Integer to sum.

  • param2 (int) – Integer to sum.

Returns:

Sum of the given parameter’s values.

Return type:

int

module1.file2.file2_func3()[source]

This function does nothing.

module1.file2.file2_func4(param1: str, param2: int, param3: bool)[source]

“This function returns the 10 or the param2 times 3 if …

Parameters:
  • param1 (str) – String to check if we should do something.

  • param2 (int) – Base value to the multiplication.

  • param3 (bool) – If we should do the multiplication or not.

Returns:

_description_

Return type:

int

module1.file2.file2_func5(param1: str, param2: int)[source]

This function returns true.

Parameters:
  • param1 (str) – Some String…

  • param2 (int) – Some Integer…

Returns:

Always true.

Return type:

boolean

Module contents