Skip to content

Instantly share code, notes, and snippets.

@uneasyguy
Last active September 16, 2020 16:01
Show Gist options
  • Save uneasyguy/e7e7a17efd285a99b8a089df1f13ed46 to your computer and use it in GitHub Desktop.
Save uneasyguy/e7e7a17efd285a99b8a089df1f13ed46 to your computer and use it in GitHub Desktop.
from random import choice
def whisper_sweet_nothings(name):
sweet_nothings = [
"{}, you're a gift to those around you.".format(name),
"I appreciate you {}.".format(name),
"{}, when you say you will do something, I trust you.".format(name),
"{}, your eyes are breathtaking.".format(name),
"{}, you make me want to be the best version of myself.".format(name),
"{}, simply knowing you has made me a better person.".format(name),
"{}, I love how you never compromise on being yourself.".format(name)
]
message = choice(sweet_nothings)
print("{}\n".format(message))
def love_language():
while True:
name = input("Hi beautiful, what's your name? ")
whisper_sweet_nothings(name)
if __name__ == '__main__':
love_language()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment