I have the following python code:
values = set([1, 2, 3, 4, 5]) import pdb pdb.set_trace()
I run the script and I am in the debugging shell
Just print it:
print
(Pdb) print list(values)
don't foget to add brackets for python3 version
(Pdb) print(list(values))