Skip to content

Instantly share code, notes, and snippets.

@wynand1004
Created October 15, 2017 04:05
Show Gist options
  • Select an option

  • Save wynand1004/b5c521ea8392e9c6bfe101b025c39abe to your computer and use it in GitHub Desktop.

Select an option

Save wynand1004/b5c521ea8392e9c6bfe101b025c39abe 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("""
_______
---' ____)____
______)
__________)
(____)
---.__(___)
""")
@Vicky-jay
Copy link

so helpful

@afrointelligence1
Copy link

Awesome. Thank you.

@brahim-1983
Copy link

thanks

@grecoww
Copy link

grecoww commented Oct 4, 2025

thankss

@belugazeroday
Copy link

thanks bri,

@sdg69
Copy link

sdg69 commented Dec 8, 2025

Rocks_!_

@forkcommit
Copy link

forkcommit commented Jan 11, 2026

Thanks very much! here is all the 9 combinations

rock_vs_rock = r"""
    _______           _______
---'   ____)         (____   '---
      (_____)       (_____)
      (_____)       (_____)
      (____)         (____)
---.__(___)           (___)__.---
           Rock VS Rock
"""

paper_vs_paper = r"""
     _______                     _______
---'    ____)____           ____(____   '----
           ______)         (______
          _______)         (_______
         _______)           (_______
---.__________)                (_________.---
                Paper VS Paper
"""

scissor_vs_scissor = r"""
    _______                      _______
---'   _____)___            ____(____   '---
          _________)          (______
       __________)        (__________
      (____)                    (____)
---.__(___)                      (___)__.---
             Scissor VS Scissor
"""

rock_vs_paper = r"""
    _______                     _______
---'   ____)                   ____(____   '----
      (_____)               (______
      (_____)              (_______
      (____)                (_______
---.(___)                   (_________.---
           Rock VS Paper
"""

rock_vs_scissor = r"""
    _______                           ____
---'   ____)               _____(____   '---
      (_____)            (_______ 
      (_____)          (__________)
      (____)                 (____)
---.(___)                   (___)__.---
           Rock VS Scissor
"""

paper_vs_rock = r"""
    _______                     ______
---'    ____)____           (___   '---
           _________)        (_____)
          _________)        (_____)
         _________)          (____)
---.__________)             (___)__.---
           Paper VS Rock
"""

paper_vs_scissor = r"""
    _______                              _______
---'    ____)____         ______(____   '---
           ________)       (_______
          _________)      (_________
         _________)            (____)
---.__________)               (___)__.---
           Paper VS Scissor
"""

scissor_vs_rock = r"""
    _______                            _______
---'   ____)_____                (____   '---
          _________)             (_____)
       ______________)       (_____)
       _______)                     (____)
---.__(___)                        (___)__.---
           Scissor VS Rock
"""

scissor_vs_paper = r"""
    _______                            ______
---'   ____)______            (____   '----
          __________)        (______
       __________)           (_______
          (____)                   (_______
---.__(___)                      (____.---
           Scissor VS Paper
"""
rps_ascii_sequence= [
    rock_vs_rock,        # 0
    paper_vs_paper,      # 1
    scissor_vs_scissor,  # 2
    rock_vs_paper,       # 3
    rock_vs_scissor,     # 4
    paper_vs_rock,       # 5
    paper_vs_scissor,    # 6
    scissor_vs_rock,     # 7
    scissor_vs_paper,    # 8
]

@AFK-anas
Copy link

AFK-anas commented Feb 8, 2026

thx man, i really needed this to make a "rock,paper, scissors" game in python ๐Ÿ‘Œ

@forkcommit
Copy link

thx man, i really needed this to make a "rock,paper, scissors" game in python ๐Ÿ‘Œ

youbare most welcome!

@DaValet
Copy link

DaValet commented Mar 4, 2026

Simple games like rock paper scissors are great examples of how classic ideas can still be fun even in digital form. Many developers now turn them into mobile versions, and I recently checked https://1winbonus-in.com/mobile/ while exploring different mobile gaming options.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment