Skip to content

Instantly share code, notes, and snippets.

@AliYmn
Last active February 1, 2017 01:15
Show Gist options
  • Save AliYmn/bdc65774e0ebef547345347ce1b140b6 to your computer and use it in GitHub Desktop.
Save AliYmn/bdc65774e0ebef547345347ce1b140b6 to your computer and use it in GitHub Desktop.
python @dekoratör fonksiyonlar
def arguman(arg):
def wrap(func):
def func_wrapper(name):
return "{} {}".format(arg, func(name))
return func_wrapper
return wrap
@arguman("Merhaba")
def get_text(name):
return name
print(get_text("Ali"))
# Outputs Merhaba Ali
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment