Skip to content

Instantly share code, notes, and snippets.

@CodeByLine
Forked from wynand1004/RPS_ASCII_Art.py
Created December 30, 2017 03:50
Show Gist options
  • Save CodeByLine/f1540aead8f6b891c65ca3669c500baa to your computer and use it in GitHub Desktop.
Save CodeByLine/f1540aead8f6b891c65ca3669c500baa to your computer and use it in GitHub Desktop.
Rock, Paper, Scissors ASCII Art
# 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