I have started learning python and I have made a basic project using python i.e, Rock, Paper and Scissor I have used Nested IF-ELSE statement Firstly I imported a python library, random using import ...
'''import random user_choice=int(input("type1='rock',type2='paper',type3='scissor'?")) print(f" your choice{user_choice}") computer_choice=random.randint(1,3) print(f ...