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 do i get rid of the (treehouse:~/workspace$)? also if I made a mistake in a previous line how do I go back? Thanks f

help me

2 Answers

Steven Parker
Steven Parker
242,284 Points

When you see "treehouse:~/workspace$", that is the system prompt. If you want to work with Python, type "Python" (without the quotes) and hit the "Enter" key. Then you should see the Python prompt (">>>").

Command entered into the console (lower pane) are processed immediately, so you can't "go back". So you might prefer developing with the editor (upper pane) which will allow you to make all the changes you like between test runs.

To get more familiar with using the environment, you may want to take the Using Treehouse Workspaces course.

what do you mean by editor sorry I think I might b retarted

If you make a mistake on the last line you wrote in the console, press the up arrow key to get the line back, and then you can correct the mistake. hopefully this helps!