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 (2015) Python for Beginners Third Quiz

Richard Rodenberger
Richard Rodenberger
179 Points

how do I run a script?

how do I run a script hello_world.py? It is a quiz question.

3 Answers

I recommend watching the previous video again :wink:

Kenneth runs his program hello_world.py like this:

python hello_world.py

I hope this helps! :grin:

Happy coding! :zap: ~Alex

Hi there!

Your computer by itself can't run a python file - it's just a text document basically. You computer needs something to read it and turn it into intructions the computer can understand. That's what the python interpreter does. So to run the file, you would type python my_file.py The python part tells the computer to go and open python, and the second part tells it to give python the file you want to run.

Hope it helps!

:+1: :wink: