+ 2
how to clear screen in python shell windows 10?
clear , clear() and os.sytem('cls') not working
6 Answers
+ 13
+ 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