Skip to content

Instantly share code, notes, and snippets.

@konchunas
Created February 10, 2019 23:39
Show Gist options
  • Save konchunas/4dd894c58a89e357163b2c7f797278db to your computer and use it in GitHub Desktop.
Save konchunas/4dd894c58a89e357163b2c7f797278db to your computer and use it in GitHub Desktop.
if __name__ == "__main__":
numbers = [1,5,10]
multiplied = list(map(lambda num: num*3, numbers))
print("result is", multiplied)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment