I am trying to get python to do the following
while tries:
guess = input ("Guess no: " + 3-tries+ ": ")
....
tries=tries-1
but I get the error message TypeError: Can't convert 'int' object to str implicitly.
How can I successfully code this?