I could have sworn there was a utility that printed a python script with it’s outputs interwoven. For instance, given a script:
a = 2
b = 3
print(a+b)
print(a*b)
the utility would output
a = 2
b = 3
print(a+b)
#> 5
print(a*b)
#> 6
Does anyone know the name of this utility? I’m having the hardest time finding it. Thank you!