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("""
_______
---' ____)____
______)
__________)
(____)
---.__(___)
""")
@emantho
Copy link

emantho commented Feb 18, 2022

Thanks dude

@Farhan0016
Copy link

Great Job

@RupamMukherjee
Copy link

Big Thanks for the figures of RPS.

@sergiopele
Copy link

Man u awesome!! I mention u in my game project.

@StealthRagnar
Copy link

Love you brother. My mom bless you

@nathanadams-na
Copy link

thank you

@kingdreamerr
Copy link

Many thanks!!

@ulazaro
Copy link

ulazaro commented May 10, 2023

thank you so much!!

@maxwellnewage
Copy link

@rubaiyet-anjum
Copy link

Thank you!!! :D

@aghbalu
Copy link

aghbalu commented Nov 23, 2023

THANKS MAN ,I MADE THE GAME WITH IT

@wynand1004
Copy link
Author

wynand1004 commented Nov 23, 2023 via email

@Harleythetech
Copy link

Harleythetech commented Dec 27, 2023

hey man, Thanks for the ASCII art! i was able to create a game with it using C# for a school project + i also made an ASCII ART Combining the 3 using your art!

Here's the game: https://github.com/Harleythetech/RPS-Game

ASCII ART:

    _______               _______                     _______
---'   ____)         ---'    ____)____            ---'   ____)____
      (_____)                   ______)                     ______)
      (_____)                  _______)                 __________)
      (____)                  _______)                  (____)
---.__(___)           ---.__________)             ---.__(___)
ROCK                  PAPER                       Scissors




    _______           _______
---'   ____)         (____   '---
      (_____)       (_____)
      (_____)       (_____)
      (____)         (____)
---.__(___)           (___)__.---
           Rock VS Rock






     _______                     _______
---'    ____)____           ____(____   '----
           ______)         (______
          _______)         (_______
         _______)           (_______
---.__________)                (_________.---
                Paper VS Paper
				
				

    _______                      _______
---'   ____)____            ____(____   '---
          ______)          (______
       __________)        (__________
      (____)                    (____)
---.__(___)                      (___)__.---
             Scissor vs Scissor

@wynand1004
Copy link
Author

wynand1004 commented Jan 6, 2024 via email

@OctuStudent
Copy link

Thanks so much bro

@mohamedtouihri
Copy link

Thanks so much bro

@natib21
Copy link

natib21 commented Jul 16, 2024

Thank You

@wynand1004
Copy link
Author

wynand1004 commented Jul 16, 2024 via email

@Abdiaziz4
Copy link

thank you bro

@Ogo-Oluwa
Copy link

Ogo-Oluwa commented Oct 4, 2024

Awesome

@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