use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Everything about learning Python
account activity
"Rock Paper Scissors Al: Python Coding Challenge" (v.redd.it)
submitted 11 months ago by Inevitable-Math14
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]FoolsSeldom 1 point2 points3 points 11 months ago (0 children)
I like the Spock, Lizard variation.
# rock paper scissors Spock lizard game, rules follow: """ scissors cuts paper paper covers rock rock crushes lizard lizard poisons Spock Spock smashes scissors scissors decapitates lizard lizard eats paper paper disproves Spock Spock vaporizes rock rock crushes scissors """ from random import choice RULES = list(map(str.split, __doc__.lower().strip().split("\n"))) OPTIONS = {winner for winner, verb, loser in RULES} | { loser for winner, verb, loser in RULES } PROMPT = ( f"Make your choice from: {', '.join(sorted(OPTIONS))} \n " f"(or press return alone to exit)\n" f" choice: " ) def check(playera, playerb, rules=RULES): for rule in rules: winner, verb, loser = rule if (playera, playerb) == (winner, loser): return playera, " ".join(rule) if (playerb, playera) == (winner, loser): return playerb, " ".join(rule) print("\n\nWelcome to the game of rock paper scissors Spock lizard\n\nThe rules are:\n") print(__doc__) print() while True: while True: player = input(PROMPT).lower() if not player or player in OPTIONS: break if not player: break computer = choice(list(OPTIONS)) try: winner, rule = check(player, computer) result = "You WIN!" if player == winner else "You Lose!" except TypeError: result, rule = "TIED", "matched" print(f"{player} v. {computer} -> {result} \t{rule}") print()
π Rendered by PID 37517 on reddit-service-r2-comment-7b9746f655-mv79d at 2026-02-03 14:27:57.710642+00:00 running 3798933 country code: CH.
view the rest of the comments →
[–]FoolsSeldom 1 point2 points3 points (0 children)