Skip to content

Instantly share code, notes, and snippets.

@dobestan
Created May 3, 2017 03:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dobestan/9b0f0d16a475cfba64400acda36f1034 to your computer and use it in GitHub Desktop.
Save dobestan/9b0f0d16a475cfba64400acda36f1034 to your computer and use it in GitHub Desktop.
dudumchit.py
import sys
message = """
⊂_ヽ
  \\ Λ_Λ
   \( 'ㅅ' ) {name}
    > ⌒ヽ
   /   へ\
   /  / \\
   レ ノ   ヽ_つ
  / / {name}
  / /|
 ( (ヽ
 | |、\
 | 丿 \ ⌒)
 | |  ) /
`ノ )  Lノ
""".format(
name=sys.argv[1]
)
print(message)
@hyukkwonepic
Copy link

👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment