Created
March 14, 2017 01:03
-
-
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 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
# 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