IQ TEST
IQ TEST!
NOT EXACTLY ACCURATE BUT SOMEWHAT CLOSE.
Voters
XGHOSTMANU (0)
@IsaacCannon how to fix?
IsaacCannon (1)
@XGHOSTMANU I think you put the input in int()
IsaacCannon (1)
@XGHOSTMANU like this b = int(input("Whats your age?"))
XGHOSTMANU (0)
PLEASE DEBUG SOMEONE
IsaacCannon (1)
@XGHOSTMANU on line 15 you are adding integers and strings.
Brendan23 (137)
@IsaacCannon correct. he/she must either change, on line 3 add int()
and then put the input code in the brackets, or on line 15, change d = 300 + b - end - start
to d = 300 + int(b) - end - start
.
THANKS IT WORKS NOW.