-
-
Save CodeByLine/f1540aead8f6b891c65ca3669c500baa to your computer and use it in GitHub Desktop.
Rock, Paper, Scissors ASCII Art
This file contains 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 Paper Scissors ASCII Art | |
# Rock | |
print(""" | |
_______ | |
---' ____) | |
(_____) | |
(_____) | |
(____) | |
---.__(___) | |
""") | |
# Paper | |
print(""" | |
_______ | |
---' ____)____ | |
______) | |
_______) | |
_______) | |
---.__________) | |
""") | |
# Scissors | |
print(""" | |
_______ | |
---' ____)____ | |
______) | |
__________) | |
(____) | |
---.__(___) | |
""") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment