Skip to content

Instantly share code, notes, and snippets.

@JoeIsHere
Created May 29, 2014 03:19
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 JoeIsHere/cfb751c7b4f94a4dd90a to your computer and use it in GitHub Desktop.
Save JoeIsHere/cfb751c7b4f94a4dd90a to your computer and use it in GitHub Desktop.
superfaver
# -*- coding: utf-8 -*-
# iOS Pythonista import
import console
import clipboard
console.set_font('Helvetica Neue')
# End Pythonista import
superf = u"""
☆。 ★。 ☆ ★
。☆ 。☆。☆
★。\|/。★
SUPERFAVE
★。/|\。★
。 ☆。☆。☆
☆。 ★。 ☆ ★
"""
print()
print(superf)
a = raw_input(u'★ = ')
b = raw_input(u'☆ = ')
r = superf.replace(u'★',a).replace(u'☆',b)
print(r)
#iOS Pythonista
clipboard.set(r)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment