To clear the console we can use the following command -
import subprocess as sp
tmp = sp.call('cls',shell=True)
However, to remove a variable from memory, we often rely upon -
del
command But both of them are variable specific and hence time-consuming. So is there any general command (like clear
under MATLAB) to remove a variable from memory and thereafter from Spyder's Variable Explorer.
Go to the IPython console in the Spyder IDE and type %reset. It will prompt you to enter (y/n) as the variables once deleted cannot be retrieved. Type 'y' and hit enter. That's it.