Skip to content

Instantly share code, notes, and snippets.

@ojas
Created October 25, 2016 20:37
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ojas/c6eadd0261e9409850d008660d6897b3 to your computer and use it in GitHub Desktop.
Save ojas/c6eadd0261e9409850d008660d6897b3 to your computer and use it in GitHub Desktop.
Trump-ify
#!/usr/bin/env python
def trumpify(x):
return '“Nobody %s more than me.” – Donald Trump' % x
if __name__ == "__main__":
things = ['repects women', 'understands the horror of nuclear', 'reads the Bible', ]
for thing in things:
print(trumpify(thing))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment