1 Réponse
+ 5
When you get ... in IDLE, it means that the interpreter is asking for additional input. Continue defining your function. Remember to indent the next line to make it a block of the function.
>>> def myFunc(x):
... print(x)
...
>>>
Finish defining the function with a blank line.