CLS dans Python

import os
clear = lambda: os.system('cls')
# Then use clear(), to clear terminal
Temerold