define and call a function without argument python code example
Example: define a function in python without arguments
def hello_function():
... print 'Hello World, it\'s me. Function.'
...
>>> hello_function()
Hello World, it's me. Function.