Question: Integer num_input is read from input representing the number of values to be read next. The remaining values are read from input into value_list. Use
Integer num_input is read from input representing the number of values to be read next. The remaining values are read from input into value_list. Use a loop to output all values in value_list in reverse order on the same line, and surround each value with square brackets. End with a newline. num_input = int(input()) value_list = [] for i in range(num_input): value_list.append(int(input())) print(f'List has {num_input} elements:') ''' Your code goes here ''' If the input is: 2 12 15 then the output is: List has 2 elements: [15][12] Note: Using print() with end='' causes the output to end without a default newline
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
