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