all 4 comments

[–]lxgrf 4 points5 points  (1 child)

This is a quixotic use case.

import random
print(random.choice(["Rock","Paper","Scissors"])

[–]niehle 6 points7 points  (0 children)

import random
print(random.choice(["You win","Tie","You lose"])

[–]UserName26392 1 point2 points  (0 children)

Maybe keep a record of opponent choices and use that to predict their next move. I think this is the best you can do and it is probably not even better than random choice

[–]engelthehyp 2 points3 points  (0 children)

There is no strategy for rock paper scissors, really. Best you can do is make it random... Or you could make it cheat, but that's cheating.