Posts

Rock paper scissors game using python programming

Image
 Hello all.  are you bored of playing the old and rigid games???. want to design a new game to play on your own???. here im giving a way to design a  single player game called Rock, Paper, Scissors  which is often played between two friends.  About the game: from our childhood we are all familiar with Rock Paper Scissor game. the basic rules to play this game is A rock beats scissors, scissors beat paper by cutting it, and paper beats rock by covering it. lets make it more simple "why can't you play  this game using  python interpreter without installing any packages??"  just follow this simple steps: open Python IDE. copy the code which im providing here. run the code. #Code #rock paper scissors game import random print ( "welcome to the game." ) user = input ( "type your name here: " ) print ( "hello" , user , "lets start the game choose one" ) print ( "to stop the game type 'quit' " ) while True : player = i