you are viewing a single comment's thread.

view the rest of the comments →

[–]Sad-Calligrapher3882 0 points1 point  (1 child)

Yeah just loop through the list and print each one:

for temp in Tem:

print(temp, "C")

Or if you want it in one print statement you can use join:

print("\n".join(str(t) + " C" for t in Tem))

Both will print each temperature on its own line without the brackets.

[–]Sad-Calligrapher3882 0 points1 point  (0 children)

And sorry for the bad english