Created
August 19, 2020 13:16
-
-
Save mateusfg7/56fe6173bd26f9c67b89721896fd3a8a to your computer and use it in GitHub Desktop.
Python Examples
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import webbrowser | |
link1 = 'https://www.neuralnine.com/books' | |
link2 = 'https://bit.ly/2XbEhsv' | |
webbrowser.open(link1) | |
webbrowser.open(link2) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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