could someone tell me if anything is wrong i keep getting "You've guessed it wrong" as my output and how can i add number of guesses i can take
a=random.range(1,10)
b=input("enter a number: ")
if a==b:print("the number you've guessed is correct")
else:print("You've guessed it wrong")