-
-
Save smileart/6779308ea8f9126f2741a03fe8a4069e to your computer and use it in GitHub Desktop.
Rock, Paper, Scissors ASCII Art
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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