- 1

Explain how The Output is: ========= hello world ========= ?

def decor(func): def wrap(): print("============") func() print("============") return wrap def print_text(): print("Hello world!") decorated = decor(print_text) decorated()

24th Jul 2018, 3:30 PM
ADITYA SINHA
ADITYA SINHA - avatar
1 Réponse
- 1
I didn't understand correctly. Please explain me line by line working.
25th Jul 2018, 4:58 PM
ADITYA SINHA
ADITYA SINHA - avatar