how to clear screen in python shell windows 10? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

how to clear screen in python shell windows 10?

clear , clear() and os.sytem('cls') not working

4th Jun 2018, 2:19 PM
Nishant Shrimali
6 Answers
+ 13
Kuba Siekierzyński 😂😂👍
4th Jun 2018, 2:42 PM
AliR૯za
AliR૯za - avatar
+ 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') 😊
4th Jun 2018, 4:38 PM
OR!ON 🛡️
OR!ON 🛡️ - avatar
+ 5
print('\n'*40) # ;)
4th Jun 2018, 2:36 PM
Kuba Siekierzyński
Kuba Siekierzyński - avatar
+ 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' 👈 😉
5th Jun 2018, 5:33 AM
OR!ON 🛡️
OR!ON 🛡️ - avatar
+ 2
import os os.system('cls') # on windows or os.system('clear') # on linux / os x
4th Jun 2018, 2:20 PM
‎ ‏‏‎Anonymous Guy
0
error : name 'os' is not defined
5th Jun 2018, 5:19 AM
Nishant Shrimali