Project 3 - Rock, Paper, Scissors game in Python
Project -3

Link to see the code:
Problems that I encountered
How to make a random pick from computers side using random library
options = ["rock" , "paper" , "scissors"] # 0 1 2 solution: random_numbers = random.randint(0,2) #rock : 0 , paper:1, scissors: 2
Functions that I have used
random library: It is used to generate random numbers.
list: syntax: ["ele1","ele2","ele3"]
if else condition
random.randint(start,end) function to generate random number in between the starting and ending number.
print() and input() functions
What I learned
How to use indexing to make choice for computers.
indexing of a list.
Use of 'elif' syntax instead of using the if else syntax.

![React Beginner [project based learning]](https://cdn.hashnode.com/res/hashnode/image/upload/v1725214935692/ae3dd028-c656-4bf0-8c57-588feeedba13.jpeg)
