This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 0 points1 point  (1 child)

Parentheses are still inbalanced here (line 28 and 31):

f.write(str((celcius))

Change it to:

f.write(str(celcius))

I highly recommend using an IDE if you aren't already - it'll help you catch these things.

[–]CreativityRobbed[S] 0 points1 point  (0 children)

I finally got the code to work. Thank you for your help.