def hi_3x3(): return [['hi' for i in xrange(3)] for j in xrange(3)]

a = hi_3x3()

for row in a:
    print row