définir une fonction dans Python sans arguments
def hello_function():
... print 'Hello World, it\'s me. Function.'
...
>>> hello_function()
Hello World, it's me. Function.
Real Rhinoceros