Skip to content

Instantly share code, notes, and snippets.

@leandroh
Last active August 29, 2015 14:04
Show Gist options
  • Save leandroh/6e9bc65d3b9308d3f53e to your computer and use it in GitHub Desktop.
Save leandroh/6e9bc65d3b9308d3f53e to your computer and use it in GitHub Desktop.
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)
@vitorvigano
Copy link

isso ae man!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment