SyntaxFix
Write A Post
Hire A Developer
Questions
you need to cast int to str before concatenating. for that use str(temperature). Or you can print the same output using , if you don't want to convert like this.
str(temperature)
,
print("the furnace is now",temperature , "degrees!")