import random import time mylist = [ 1 , 2 , 3 ] print ( "Welcome to the Stone-Paper-Scissor game." ) print ( " \n Here are some of the rules" ) print ( "1.) There will be five round. The one whose score is more will be declared as winner." ) print ( "1.) For Stone, simply press 1." ) print ( "2.) For Paper, simply press 2." ) print ( "3.) For Scissor, simply press 3." ) print ( " \n Now, Lets go!" ) i = 0 j = 0 k = 1 for k in range ( 1 , 6 ): print ( " \n ROUND " , k ) y = int ( input ( " \n Enter your choice as 1, 2 and 3 as instructed above: " )) m = random . choice ( mylist ) if y == 1 : if m == 1 : print ( " \n Tie" ) elif m == 2 : print ( " \n Computer chose paper, so you lose. Try again." ) j = j + 1 ...