so, I started to self-learn Python, but there is small problem with variables and their outcome?
choice = input()
if (random.randint(0,100) > 20 and choice == (1)):
print("Odkopnul jsi krysu a ta sebou")
print("prastila o zed az omdlela")
elif random.randint(0,100) < 20:
print("I pres tvoje cukani ti")
print("krysa ukousla kus palce!")
The problem is, when I press 1 and then enter, it does nothing :o I need it to: If random number is bigger than 20 and input was 1 to print one thing (You won, for exp.) or if random number was smaller than 20 to print other thing (You lost, for exp.)
Thank you for all advice, I appreciate that