I\'m a Python noob and I need some help for a simple problem.
What I need to do is create a list with 3 items and add spaces before and after every item.
For
Indent your python code first! And then:
lst = ['a', 'b', 'c'] lst2 = [' ' + a + ' ' for a in lst] print lst2