I am having trouble with the following piece of code:
if verb == "stoke":
if items["furnace"] >= 1:
print("going to stoke the furnace")
if items["coal"] >= 1:
print("successful!")
temperature += 250
print("the furnace is now " + (temperature) + "degrees!")
^this line is where the issue is occuring
else:
print("you can't")
else:
print("you have nothing to stoke")
The resulting error comes up as the following:
Traceback(most recent call last):
File "C:\Users\User\Documents\Python\smelting game 0.3.1 build
incomplete.py"
, line 227, in <module>
print("the furnace is now " + (temperature) + "degrees!")
TypeError: must be str, not int
I am unsure what the problem is as i have changed the name from temp to temperature and added the brackets around temperature but still the error occurs.
print("the furnace is now " + str(temperature) + "degrees!")
cast it to str