Let's say, I have a python script (test.py) and it contains a function that takes a string and printed back, as following
def pri(str):
print str
How could i call the this function (pri) from the command line?
I tried:
$python test.py pri(blablalba)
but i got the following error: missing end of string