I want to get the output of an exec(...)
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? How can I get something like:
0
1
2
Regards and thanks.
Question&Answers:os