I've typed up this code but I can't see what's wrong with it.
if guess != number:
number = str(number)
print('Nope. The number I was thinking of was ' + number)
It keeps giving me "Can't convert 'int' object to str implicitly" even though I converted the integer into a string
Help out this noob please?