+ 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 Respostas
+ 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