python_tooling_example.example_subpackage.daughter_module

Another example module, this time inside of a subpackage.

python_tooling_example.example_subpackage.daughter_module.concat_2(a)[source]

Concatenate the string “2” to to the end of an existing string object.

Parameters:a (string) – The string to be concatenated to.
Returns:a+”2” – The resulting string.
Return type:string

Notes

Uses the built-in + operator.