Python In Terminal YesS How to print variables decleared in current session >>> s = 3 >>> >>> print([v for v in dir() if not v.startswith('__')]) ['s'] >>> s 3 >>>