python function without parameters 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.
def hello_function():
... print 'Hello World, it\'s me. Function.'
...
>>> hello_function()
Hello World, it's me. Function.