Skip to content

Instantly share code, notes, and snippets.

@reeddunkle
Last active May 5, 2016 16:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save reeddunkle/863db100ab5c0d96149d5dc4dc9c79f9 to your computer and use it in GitHub Desktop.
Save reeddunkle/863db100ab5c0d96149d5dc4dc9c79f9 to your computer and use it in GitHub Desktop.
Custom Map Exercise
FILES = ["picture1", "georgi_paws_everywhere", "custom_wreath"]
def my_map(function, iterable):
output = []
for element in iterable:
result = function(element)
output.append(result)
return output
# results = my_map(lambda x: x + ".jpg", FILES) # <-- Deprecated
results = my_map(lambda x: "{}.jpg".format(x), FILES)
print results
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment