ShriRam Changed status to publish August 21, 2023
def printme( str ):
“This prints a passed string into this function”
print (str)
return
# Now you can call printme function
printme(“This is first call to the user defined function!”)
printme(“Again second call to the same function”)
ShriRam Changed status to publish August 21, 2023