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_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_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 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_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_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