Skip to content

Instantly share code, notes, and snippets.

@foxoman
Forked from wynand1004/RPS_ASCII_Art.py
Created November 29, 2021 20:28
Show Gist options
  • Save foxoman/9f78b8beea76beedd39f07bff2d0adac to your computer and use it in GitHub Desktop.
Save foxoman/9f78b8beea76beedd39f07bff2d0adac 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