formations/python/python3/fr/snippets/decorateur.py

11 lines
132 B
Python
Raw Normal View History

2018-08-21 10:25:44 +02:00
def helloworld(ob):
print "Hello world"
return ob
@helloworld
def myfunc():
print "my function"
myfunc()
print myfunc