Skip to content

Instantly share code, notes, and snippets.

@smileart
Forked from wynand1004/RPS_ASCII_Art.py
Last active January 11, 2023 14:41
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 smileart/6779308ea8f9126f2741a03fe8a4069e to your computer and use it in GitHub Desktop.
Save smileart/6779308ea8f9126f2741a03fe8a4069e to your computer and use it in GitHub Desktop.
Rock, Paper, Scissors ASCII Art
# Rock
print("""
_______
---' ____)
(_____)
(_____)
(____)
---.__(___)
""")
# Paper
print("""
________
---' ____)____
______)
_______)
_______)
---.__________)
""")
# Scissors
print("""
_______
---' ____)____
______)
__________)
(____)
---.__(___)
""")
# Lizard
print("""
---.___________
_______)
---.________)
""")
# Spock
print("""
⌠⌒|
⌠⌒⌉| | ◜﹆◜﹆
| ||⩧| / // /
|_|| | /-//=/
| || |/ // /
( || | // /
| .______
| __⫫____)
| |
""")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment