Last active
August 29, 2015 14:04
-
-
Save leandroh/6e9bc65d3b9308d3f53e to your computer and use it in GitHub Desktop.
This file contains hidden or 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
full_name = "Leandro Parazito" | |
name_list = full_name.split() | |
greeting_list = "Hi, I'm x".split() | |
# Get last item in greeting_list | |
greeting_list[-1] = name_list[0] | |
greeting = " ".join(greeting_list) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
isso ae man!