Untitled
unknown
plain_text
5 years ago
226 B
9
Indexable
hourly_temperature = [90, 92, 94, 95]
for i in range(len(hourly_temperature)):
print(str(hourly_temperature[i]),end='')
if i !=len(hourly_temperature)-1:
print(" -> ",end='')
else:
print(end=' ')
print()Editor is loading...