Solve 6.3.3

This commit is contained in:
Joe S 2021-02-14 16:20:35 -05:00
parent 50b32271e2
commit 1a9d1f6386
1 changed files with 10 additions and 0 deletions

10
6/6.3/6.3.3/main.py Normal file
View File

@ -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, '')