Snake Water Gun def game(): n= 0 round= 0 userpoint= 0 computerpoint= 0 while n< 10 and userpoint< 10 and computerpoint< 10 : import random # userpoint+=1 # computerpoint+=1 round+= 1 s=[ "snake" , "water" , "gun" ] choice=random.choice(s) user= input ( "type \n snake \n water \n gun: " ) n+= 1 if user== "snake" and choice== "snake" : print ( "Computer User: " ,choice) print ( "both are same " , " Your Score: " ,userpoint, "Computer Score: " ,computerpoint, "Round: " ,round) elif user== "water" and choice== "water" : print ( "Computer User: " , choice) print ( "both are same " , " ...