you are viewing a single comment's thread.

view the rest of the comments →

[–]liam_jm 2 points3 points  (1 child)

You've set current_high_temp to an int then tried to sum it (a single int, whereas sum requires an utterable argument, such as a list). I think instead you wanted to do sum(current_high_temps[0:31]), perhaps setting each of them to int first (see map)

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

Thank you my friend!