Solve 6.3.3
This commit is contained in:
parent
50b32271e2
commit
1a9d1f6386
|
@ -0,0 +1,10 @@
|
||||||
|
user_input = input()
|
||||||
|
hourly_temperature = user_input.split()
|
||||||
|
|
||||||
|
result = []
|
||||||
|
|
||||||
|
for temp in hourly_temperature:
|
||||||
|
result.append(temp)
|
||||||
|
result.append('->')
|
||||||
|
result.pop()
|
||||||
|
print(*result, '')
|
Loading…
Reference in New Issue