Skip to content

Instantly share code, notes, and snippets.

@nqthqn
Created March 14, 2017 01:03
Show Gist options
  • Save nqthqn/39a148507172b7542c43fd7ec6e59413 to your computer and use it in GitHub Desktop.
Save nqthqn/39a148507172b7542c43fd7ec6e59413 to your computer and use it in GitHub Desktop.
i wrote this for my girlfriend (Mon, Mar 19, 2012 at 9:23 PM) now she is my wife.
# This is a small program for sweet pea. Lala, I love you a lot.
secret = ['o', 'y', ' ', 'u', 'r', 'a', ' ', 'e', 'y', 'm', 'd', ' ', 'r', 'a', 'e', 'j', 'l', 'e', 'n', 'i']
kiss = ""
for love in range(len(secret)):
if love % 2:
kiss += secret[love]
kiss += secret[love-1]
kiss += 'g'
print kiss
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment