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

Diane D
Diane D
800 Points

Confusion regarding console and hello.py

To whom this gets read by, As a first time coder, I am a bit confused by what the job of the console is ( in this case using the application workspace) and the job of the hello.py file above the console. What do these two sections in the workspace format? Thanks.

2 Answers

Hi Diane,

The console would be too much to write about in its entirety in one post. But as an example of what the console can do... If you were to use the code print(โ€œHello Worldโ€) in a python file and run it, the output (Hello World) would show up in the console.

Itโ€™s also a place where you can use the Python REPL (read, evaluate, print, loop). You can use it to evaluate expressions and just generally mess around in python. To do this just enter the command python.

Diane D
Diane D
800 Points

Thank you so much for your help!