Possible Duplicate:
Python - Algorithm to determine if a list is symmetric
I need help writing a Python function - symmetric,that takes as input a list of size n(which is a square matrix) that checks the first row is the same as the first column, the second row is the same as the second column and so on, and returns boolean True if the elements are the same and false if they are not. The list could contain integers or strings.
def symmetric(my_list):
my_list = [[1, 2, 3],
[2, 3, 4],
[3, 4, 1]]