How do I clear only part of the screen in python
Do you mean only one part? If that's what you mean, then you can't do it. THe entire screen has to be cleared.
import os os.system('clear')
or
clear()
Any of them should work
clear() won't just work like that, you have to put it in a function first
clear
How do I clear only part of the screen in python
Do you mean only one part? If that's what you mean, then you can't do it. THe entire screen has to be cleared.
or
Any of them should work
clear()
won't just work like that, you have to put it in a function first