formations/python2/formation/snippets/decorateur.py
2018-08-20 21:02:38 +02:00

11 lines
132 B
Python

def helloworld(ob):
print "Hello world"
return ob
@helloworld
def myfunc():
print "my function"
myfunc()
print myfunc