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 trialArikaturika Tumojenko
8,897 PointsHow can I delete everything in the work space?
How can I delete everything in the work space? Kenneth mentions "clear" after using exit() but I didn't understand exactly what he did.
2 Answers
Vince van Meer
603 PointsI simply made a variable:
cleanup = " " * 500
then I just did: print(cleanup)
Printing a whitespace 500 times. But good to know there's an actual command for it xD
Laurence Hails
718 Pointstype exit() to exit python shell then type clear and press enter. re enter shell by typing python again
Harish Kosuri
Courses Plus Student 839 PointsIf you want to clear screen without exiting the python shell then just use ctrl + l it will clear screen.
Nelson J
7,411 PointsNelson J
7,411 PointsI like your options. LOL.
Arikaturika Tumojenko
8,897 PointsArikaturika Tumojenko
8,897 PointsFunny :D.