[Solved] How can i make a set in my list in python?


You should try to do the complete code, but the base code is

x = [['#', '#', '#', '#', '#', '#', '#'], ['#', ' ', ' ', ' ', ' ', ' ', '#'], ['#', ' ', '$', '+', '$', ' ', '#'], ['#', '.', '*', '#', '*', '.', '#'], ['#', ' ', '$', '.', '$', ' ', '#'], ['#', ' ', ' ', ' ', ' ', ' ', '#'], ['#', '#', '#', '#', '#', '#', '#']]
for i in x: #For each element in x
    print '| ', 
    for k in i: #For each element in each element of x
        print k, ' | ', #Print it
    print

solved How can i make a set in my list in python?