Get value and type of python variable similar to Jupyter behavior
Get value and type of python variable similar to Jupyter behavior Question: Assume you have a Jupyter notebook with one entry that has three lines: x = 1 y = x + 1 y The output will print ‘2’ I want to do this inside my python code. If I have a variable lines and …