+ 2
how to clear screen in python shell windows 10?
clear , clear() and os.sytem('cls') not working
6 Answers
+ 13
Kuba SiekierzyÅski ššš
+ 6
If you want your code to run both on Linux and Windows use this š
import os
# using ternary operator š
os.system('cls' if os.name=='nt' else 'clear')
š
+ 5
print('\n'*40)
# ;)
+ 5
Nishant Looks like you didn't import os first! š®
# First import os module š
import os
# Then use š
os.system('cls') # if you are on Windows else use 'clear' š
š
+ 2
import os
os.system('cls') # on windows
or
os.system('clear') # on linux / os x
0
error : name 'os' is not defined