i've got a little problem here is my code :
code = """
i = [0,1,2]
for j in i :
print j
"""
result = exec(code)
how could i get the things that print outputed ? bref here how can i get in something :
0
1
2
regards and thanks Bussiere