Skip to content

Instantly share code, notes, and snippets.

@mateusfg7
Created August 19, 2020 13:16
Show Gist options
  • Save mateusfg7/56fe6173bd26f9c67b89721896fd3a8a to your computer and use it in GitHub Desktop.
Save mateusfg7/56fe6173bd26f9c67b89721896fd3a8a to your computer and use it in GitHub Desktop.
Python Examples
import webbrowser
link1 = 'https://www.neuralnine.com/books'
link2 = 'https://bit.ly/2XbEhsv'
webbrowser.open(link1)
webbrowser.open(link2)
num = 'i love you'
print(num)
pow = lambda x: x.replace('i', 'we')
print(list(map(pow, num)))
print(num)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment