I am new to programming, and trying out with a little Python3.
I have some trouble understanding the concept behind calling a function? having the defined the following function, what would be the proper way to call it?
def string_length(mystring):
return len(mystring)
Thanks in advance guys