import random
list = ['p','s','r']
chance = 10
no_of_chance = 0
computer_point = 0
human_point = 0
print(" \t \t \t \t paper,scissor,rock Game\n ")
print("p for paper \n s for scissor \n r for rock ")
while no_of_chance < chance:
_input = input('p or s or r:')
_random = random.choice(list)
- This is a paper scissor rock python code,i found online.I pasted part of a code here.I could not understand why there is underscore in front of the input and random. i am beginner in python so kindly help me.