so far this is my code:
import random
choices = ["Rock","Paper","Scissors"]
computer = random.choices(choices)
player = input("Rock, paper or scissors??: ").lower()
print("Player :",player)
print("Computer: ",computer)"
when i try to print it says
Rock, paper or scissors??: gun
Player : gun
Computer: ['Paper']
how can I remove [''] from my output and only print "paper"
any help would be appreciated.