I am working on page 16, chapter 1, in the book "Python Crash Course" by Eric Matthes. I am trying to run my hello_world.py
python program from my Windows terminal.
The directions say to:
Open a new terminal window and issue the following commands to run hello_world.py
:
C:\> **cd Desktop\python_work**
C:\Desktop\python_work> **dir**
hello_world.py
C:\Desktop\python_work> **python hello_world.py**
Hello Python world!
python_work
is my python work folder on my desktop. In my Windows terminal, I have tried entering the code with and without the unbolded C:\>
. It has given me an error message: The system cannot find the path specified.
I'm probably doing something wrong, but I don't know what's wrong.