Write a loop to print all elements in hourly_temperature. Separate elements with a -> surrounded by spaces.Sample output for the given program with input: '90 92 94 95'90 -> 92 -> 94 -> 95 Note: 95 is followed by a space, then a newline.
python
user_input = input()hourly_temperature = user_input.split()
''' Your solution goes here '''
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here