About 60,200 results
Open links in new tab
  1. Rock, Paper, Scissors in Python - Stack Overflow

    I'm making a rock, paper, scissors game in Python (I'm using Python 33 IDLE) for my Computer Science class. I wrote this script, but when I run it and make my choice it does nothing. Please …

  2. Rock Paper Scissors in Python - Stack Overflow

    Oct 23, 2011 · 3 I answered your question separately, but just for fun here's a little working Rock, Paper, Scissors game to look at. This one is for Python 2.x and probably won't work in Python …

  3. Python - How do I make Rock Paper Scissors run multiple rounds?

    Jan 30, 2021 · Python - How do I make Rock Paper Scissors run multiple rounds? Asked 4 years, 11 months ago Modified 4 years, 11 months ago Viewed 2k times

  4. Basic python rock papers scissors game (first code)

    Apr 25, 2024 · Traditionally it's Rock, Paper, Scissors instead of Rock, Paper, Scissor. You've attempted to validate whether the user input an integer, but what you've written doesn't work.

  5. Rock, Paper, Scissors game in object-oriented Python

    Sep 16, 2022 · The choice of rock-paper-scissors to get to know OOP better was excellent! Not too difficult, but it introduces you to the important concepts. What would I improve? Your …

  6. Rock Paper and Scissors in Python - Stack Overflow

    I'm new to coding and my Rock Paper and Scissors game that i've created isn't working as intended. If someone enters the word rock, paper or scissors, then the programme works as …

  7. Simplify Python code (Rock, Paper, Scissors) - Stack Overflow

    Jul 22, 2018 · 0 I am a complete python newbie and this is my first question on stackoverflow, so please be patient with me :) So to get some excersise, I tried programming my own rock, …

  8. Python - rock paper scissors, problem with if statements

    Jul 27, 2022 · I believe the problem is with my indentation, if me and computer both choose scissors it prints You lose - paper beats rock!. but I could be wrong, can anyone give me some …

  9. python - How to make my rock, paper, scissors game more …

    Dec 28, 2021 · New programmer here. I am writing a rock, paper scissors game, so far I have managed to get it working, however I'm wondering how I could make it more efficient. I'd be …

  10. python - Rock Paper Scissors - get winner mathematically - Stack …

    I just finished my rock paper scissors game in python. Right now, the user has to chose between three buttons, and a string user1 is set to either "Rock", "Paper", or "Scissors". And when I …