Here is my text:
def judgeScoreInput():
if int(input()) in range (11) == [0,1,2,3,4,5,6,7,8,9,10]:
A = int(input("Enter Judge A Score: "))
B = int(input("Enter Judge B Score: "))
C = int(input("Enter Judge C Score: "))
D = int(input("Enter Judge D Score: "))
E = int(input("Enter Judge E Score: "))
judgeScoreInput()
I want the Judge score to have a range limit upon to 10 so user can't input more than 10, if they do it sends some sort if error message, how do I go about this?