First time here? Check out the FAQ!

kc's profile - activity

2021-01-21 14:56:05 -0500 marked best answer Tried to use os.system('clear') but had a problem.

Hi all,

This is my script:

from os import system

system('clear')

print('\nI am here!')

This is what displayed:

ESC[HESC[2J

I am here!

I am using MacOS Big Sur, Wing Pro 7.2.8.0 (rev 87ca750566c6) with python 3.9

Thank you in advance.

2021-01-20 02:04:39 -0500 commented answer Tried to use os.system('clear') but had a problem.

Hi, I followed your instruction and it worked fine. It seems that PyCharm is a bit easier for me to deal with than Wing.

2021-01-19 10:32:06 -0500 received badge Student (source)
2021-01-19 08:42:55 -0500 asked a question Tried to use os.system('clear') but had a problem.

Tried to use os.system('clear') but had a problem. Hi all, This is my script: from os import system system('clear')