[Solved] Why doesn’t this function call print anything?


When i used parenthesis, removed quotes it worked.

def my_function(s):
    print("a") 
    size = len(s)
    print(size)
    return

my_function("abc")

solved Why doesn’t this function call print anything?