adding all files done so far

This commit is contained in:
2019-07-10 20:18:31 +01:00
parent 13c0e9cb4d
commit e3ac390e8b
76 changed files with 8644 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
# ~/.virtualenvs/learning/python
def convert_to_uppercase(function):
""" will convert to uppercase """
def wrapper():
func = function()
make_uppercase = func.upper()
return make_uppercase
# @convert_to_uppercase
def hello():
""" print hello world """
return 'hello world'
say_HELLO = convert_to_uppercase(hello)
print(say_HELLO())