So I have the code (Relevant code):
print("You have chosen to bet on the even numbers")
valin = input("How much would you like to bet?: ")
print("If it lands on an even number, you win", valin*2)
What I want it to do is print the value of valin multiplied by 2, but have no idea how to do that! How ?
Convert the input string to an integer with
int:then proceed as before.