Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python

How to clear Screen

I have installed python 3.10.0 on my system and need every so often to clear the screen as I'm not using the workspace control L doesnt work.

I get this error with clear or clr() or clear()

Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'clear' is not defined

Thanks for any help.

1 Answer

jessicakincaid
jessicakincaid
21,824 Points

Hey, jas0n! Nice question. It sounds like you're in the Python shell. I found this answer on Stack Overflow [https://stackoverflow.com/questions/1432480/any-way-to-clear-pythons-idle-window]:

>>> import os
>>> os.system("clear")