On breakpoints --> PyCharm debugger shows current list of variable states and is also able to show previous lines calculation/call results.
But what if I want to get interim results on function chain calls at the same line of code?
For example:
l = [3, 4, 5]
l = list(map(str, l)) #here I want to check result "of map(str, l)"
s = "_".join(l).upper()[::-1] #here I want see values for each interim func calls (join, upper)
Is it somehow possible in PyCharm?
