L = [9, 2, 1, 3, 4, 5, 6]
x = str(filter(lambda x: x > 30, map(lambda x: x*x, L)))
I know that in order to remove the or whatever at the output, I can add a list() in front or tuple (). I know the answer for x is [81, 36], but how do I actually produce it at the output? I cant seem to make it work with list() or tuple()