Created
October 15, 2017 04:05
-
-
Save wynand1004/b5c521ea8392e9c6bfe101b025c39abe 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
so helpful