Skip to content

Instantly share code, notes, and snippets.

@alex-d-boyd
Created August 29, 2019 09:53
Show Gist options
  • Save alex-d-boyd/fb92f5be61e4e07ce5100be9637a718d to your computer and use it in GitHub Desktop.
Save alex-d-boyd/fb92f5be61e4e07ce5100be9637a718d to your computer and use it in GitHub Desktop.
#! /usr/bin/env python3
import random
random.seed()
def frankly():
words = ['frank', 'dear', 'give', 'damn']
random.shuffle(words)
words[0] = words[0].capitalize()
return "{}ly, my {}, I don't {} a {}!".format(*words)
if __name__ == '__main__':
print(frankly())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment