Yes, there is a way to solve this!
Regarding your choice, I could do:
if ((choiceHuman == 'rock' and choiceComp == 'paper') or (choiceComp == 'rock' and choiceHuman == 'paper')):
print('Paper covers rock')
The code above worked and printed what you want, however, it is pretty difficult for you to do the accumulator loop and figure out the score of each round.
I think there would be a way to accumulate the score within this code above, but I hvnt found it.
Hope this helps!