Kode sumber untuk my_module
"""This is a very simple function in python script in V1.0 branch"""
[docs]def print_func_test(msg):
"""
This is a simple function that prints a message
Parameters:
msg (str): The string to print
"""
print(msg)
print_func_test('Hello World branch V1.0')