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 Python Basics Types and Branching If, Else and Elif

I'm not remembering how to clear the console? Just typing clear doesn't work - I need the blue text

How can I clear my console? I think there's a way to use the keyboard but also typing in "clear". Typing in "clear" is what I have in my early notes but it doesn't work without the 'treehouse: workspace$' and I don't know how to call that

1 Answer

Steven Parker
Steven Parker
229,732 Points

You're right that "clear" is a system command and only works when you see the system prompt. If you see >>>, you are running python, and can end it several ways. One is the exit() command, and another is by just typing a Control-D.

You can also enter system commands from inside Python using the "os" module, for example:

import os

os.system("clear")