You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
defdocFunction():
""" This is a documentation line for the docFunction. This can help user understand what the function does. """print( "docFunction() => ", "I am important!" )
print( docFunction.__doc__ )
# => This is a documentation line for the docFunction.# => This can help user understand what the function does.
# any code after return statement is ignored without warning or an errordefsumTwoNumbers( num1, num2 ):
returnnum1+num2print( "sumTwoNumbers(11, 22) => ", sumTwoNumbers(11, 22) )
# => sumTwoNumbers(11, 22) => 33