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 -
- using
del
command
- removing variable manually by using the drop-down menu in variable explorer
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.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…