Why is "None" appearing me?
I made other code similar to that and "None" dindn't appear me. What can I do to stop appear me the "None" sentence?
first_question = str(input(print("Who do you bet for? ")))
if first_question == "tim" or first_question == "tess" or first_question == "alex" or first_question == "duck" or first_question == "dog":
bet = int(input(print("How much you bet? ")))
if bet < 0:
print("The bet can't take negative valours! ")
bet = int(input(print("How much you bet? ")))
while bet < 0:
print("The bet can't take negative valours! ")
bet = int(input(print("How much you bet? ")))
if bet > my_money:
print("The bet can't be above the money you have! ")
bet = int(input(print("How much you bet? ")))
while bet > my_money:
print("The bet can't be above the money you have! ")
bet = int(input(print("How much you bet? ")))
if bet >= 0 and bet <= my_money:
total_money = my_money - bet