Possible Duplicate:
Reverse a string in Python
I understand that data in Python (strings) are stored like lists
Example:
string1 = "foo"
"foo"[1] = "o"
How would I use the list.reverse function to reverse the characters in a string? Such that I input "foo" and get returned back "oof"