How should I write the code with the following problem?
Implement the function reverse_print(lst) that prints out the contents of the given list ‘lst’ in reverse order. For example, given a list [3, 6, 2, 1], the output should be 1, 2, 6, 3 (vertical printout allowed). For this code, you are only allowed to use a single for-loop. Without String Method
Also Not using Print[::-1]