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

Brady Gorman
seal-mask
.a{fill-rule:evenodd;}techdegree
Brady Gorman
Front End Web Development Techdegree Student 7,738 Points

Everything I type on the Workspace Console comes back as "Undefined"

I'm following the instructions step-by-step on the video and every time I get:

Type "help", "copyright", "credits" or "license" for more information.

python check_please.py
File "<stdin>", line 1
python check_please.py
^
SyntaxError: invalid syntax
clear
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'clear' is not defined

There is no inconsistency with the .py file name and what I'm typing. I've had this issue pop up before, I can't remember how to fix it and it's incredibly frustrating!

Thanks in advance

Josh Keenan
Josh Keenan
19,652 Points

Can you link to your workspace?

1 Answer

Steven Parker
Steven Parker
229,644 Points

Those are commands for the system, but you are giving them to the Python IDE (you already ran "python"). You can tell Python is running because the prompt looks like this :point_right: >>>

To get back to the system prompt, type "exit()" to Python, or just type a Ctrl-D character. The system prompt will generally look something like this :point_right: treehouse:~/workspace$