New to Python and I was wondering if anyone could guide me in the right direction.
For example:
a = "string"
s = list(a)
That turns "string"
into ['s', 't', 'r', 'i', 'n', 'g']
But how can I reverse the list and print out "gnirts"
without using the built in reverse method from Python.