>>> def spam(x): ... print("Hello, I'm function spam() with", x) ... >>> spam('abc') Hello, I'm function spam() with abc >>>