# Write a Program to
Implement Function in Python # Create function def func(name): # Function DocString """ This function func to the person passed in as a parameter
""" # Function Definition print("Hello, " + name + ". Good morning!") print(func.__doc__) # Function call func("A2PStudy")
Output: Hello, A2PStudy. Good morning! This function func to the person passed in as a parameter
|