Function definition is here
def printme(str):
"""This prints a string passed into this function"""
print str
You can run it like below
printme("I'm first call to user defined function!")
I want to do that instead
printme(I can do it with this the double quote)
What should I amend in my function to be able to do this? I tried this but it did not work out
def printme(raw_input()):
"""This prints a string passed into this function"""
I got this error
File "<ipython-input-31-e1326fb445e6>", line 1
def printme(raw_input()):
^
SyntaxError: invalid syntax